Skip to content

Commit

Permalink
Update version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed May 1, 2017
1 parent 542bdd0 commit 561a240
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,20 @@
Change Log
==========

## 1.3.1

- Support Logical NOT operator
- Support Converter for java.util.Currency
- Fix non-null reference returned for null foreign key reference on entity retrieval
- Fix column transformers not used when aliasing columns
- Fix ConnectionPoolDataSource not used in ConnectionProvider
- Fix Read only values not filtered from insert/update operations
- Fix Android schema upgrade using not yet created indexes
- Fix Android incorrect concurrent access of DateFormat instance
- Fix Android QueryLoader closed previous result instance
- Fix processing error generated for @Transient entity not used in a relationship
- Fix Kotlin EntityDataStore inner instance not exposed

## 1.3.0

- Support @Superclass hierarchies
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -274,9 +274,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.3.0'
compile 'io.requery:requery-android:1.3.0' // for android
annotationProcessor 'io.requery:requery-processor:1.3.0'
compile 'io.requery:requery:1.3.1'
compile 'io.requery:requery-android:1.3.1' // for android
annotationProcessor 'io.requery:requery-processor:1.3.1'
}
```

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

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

Properties properties = new Properties()
Expand Down

0 comments on commit 561a240

Please sign in to comment.