Skip to content

Commit

Permalink
Update version to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Mar 20, 2017
1 parent 4b49410 commit c392817
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,19 @@
Change Log
==========

## 1.2.1

- Support row value expressions
- Support generating entities from Kotlin abstract classes
- Support Kotlin 1.1
- Fix handling of self referencing Many-to-Many relationship
- Fix Android table/column name transformers not used during upgrade
- Fix use AutoValue builder setters if available
- Fix @Value.Default handling for immutable.org types
- Fix deleting entities from a One-To-Many when using delete(Iterable)
- Kotlin fix varargs in raw query not expanded
- Kotlin fix ClassCastException when using a join clause

## 1.2.0

- Support Jackson serialization with a new Jackson serialization module (requery-jackson)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -274,9 +274,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.2.0'
compile 'io.requery:requery-android:1.2.0' // for android
annotationProcessor 'io.requery:requery-processor:1.2.0'
compile 'io.requery:requery:1.2.1'
compile 'io.requery:requery-android:1.2.1' // for android
annotationProcessor 'io.requery:requery-processor:1.2.1'
}
```

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

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

Properties properties = new Properties()
Expand Down

0 comments on commit c392817

Please sign in to comment.