diff --git a/CHANGELOG.md b/CHANGELOG.md index ca057b22..cbf37386 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ Change Log ========== +## 1.5.0 + +- Deprecates RxJava 1.0 support in order to bring improvements to RxJava 2.0 support in a future version +- Default indexes now include table name in the index name +- Support setting generated member visibility (for removing synthetic accessors) +- Support package private code generation for reduced method count on Android +- Fix NoSuchElementException during table generation of an entity with no keys +- Fix Android proguard rules +- Fix EntityDataStore synchronization that could dead lock +- Fix inserting empty collection returning null key set +- Fix Kotlin ClassCastException when using long/int key types in the insert returning query +- Fix CloseableIterator accumulation when using Result functions +- Fix Connection not closed when exception thrown from a raw query + ## 1.4.1 - Support accessing the Configuration instance from EntityDataStore diff --git a/README.md b/README.md index c447bbd9..68fa6330 100644 --- a/README.md +++ b/README.md @@ -274,9 +274,9 @@ repositories { } dependencies { - 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' + compile 'io.requery:requery:1.5.0' + compile 'io.requery:requery-android:1.5.0' // for android + annotationProcessor 'io.requery:requery-processor:1.5.0' } ```