Skip to content

Commit

Permalink
Update version to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Oct 7, 2017
1 parent 9f3b6c6 commit 53802ff
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,21 @@
Change Log
==========

## 1.4.1

- Support accessing the Configuration instance from EntityDataStore
- Support setting generated member visibility (for removing synthetic accessors)
- Support accessing Transaction instance from KotlinReactiveEntityStore
- PostgresSQL store blobs as bytea
- Fix foreign key support in Android sqlcipher/sqlite-support
- Fix stack overflow on bi-directional attributes in EnityProxy.toString
- Fix references cascaded even if Cascade.NONE specified
- Fix NoSuchMethodError when converting a entity with @Embedded types to json
- Fix Observables not triggered for insert operations
- Fix @Transient annotation not applied to methods
- Fix @Transient members were checked for reserved works
- Fix Connection instance not closed on transaction rollback

## 1.4.0

- Support item view types in Android RecyclerView adapter
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -274,9 +274,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.4.0'
compile 'io.requery:requery-android:1.4.0' // for android
annotationProcessor 'io.requery:requery-processor:1.4.0'
compile 'io.requery:requery:1.4.1'
compile 'io.requery:requery-android:1.4.1' // for android
annotationProcessor 'io.requery:requery-processor:1.4.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -35,7 +35,7 @@ idea {
}

group = 'io.requery'
version = '1.4.0'
version = '1.4.1'
description = 'A light but powerful object mapper and SQL generator for Java/Android'

Properties properties = new Properties()
Expand Down

0 comments on commit 53802ff

Please sign in to comment.