diff --git a/CHANGELOG.md b/CHANGELOG.md index 190ea6fe..ca057b22 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index e2a78ad8..c447bbd9 100644 --- a/README.md +++ b/README.md @@ -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' } ``` diff --git a/build.gradle b/build.gradle index a593ec54..35e1da89 100644 --- a/build.gradle +++ b/build.gradle @@ -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()