Skip to content

Commit

Permalink
Update version to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Jan 8, 2018
1 parent 94ecff5 commit 403077b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions 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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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'
}
```

Expand Down

0 comments on commit 403077b

Please sign in to comment.