Skip to content

Commit

Permalink
Update version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Dec 16, 2016
1 parent 4485c85 commit 65b02b8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,21 @@
Change Log
==========

## 1.1.0

- Support extendable query types. RxJava and RxJava 2.0 result conversion methods are now separated
into different classes. This is a minor API change that should not effect most code.
- Support [Reactor Core extensions](http://projectreactor.io)
- Support custom column definitions for table generation
- Support for @Entity(copyable) shallow copying via generated copy() method
- Kotlin findByKey returns nullable value
- Fix ClassNotFoundException referencing a RxJava 1.0 class when using RxJava 2.0
- Fix OneToMany cascaded elements incorrectly updated instead of inserted
- Fix stackoverflow in ManagedTransaction.begin()
- Fix foreign key support using Android SQLCipher database
- Fix multiple blob arguments in Android query expression
- Fix some compilation issues using Android Jack compiler

## 1.0.2

- Support repeated @Embedded fields
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -274,9 +274,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.0.2'
compile 'io.requery:requery-android:1.0.2' // for android
annotationProcessor 'io.requery:requery-processor:1.0.2'
compile 'io.requery:requery:1.1.0'
compile 'io.requery:requery-android:1.1.0' // for android
annotationProcessor 'io.requery:requery-processor:1.1.0'
}
```

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

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

Properties properties = new Properties()
Expand Down

0 comments on commit 65b02b8

Please sign in to comment.