diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a8970b..bc9c53af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Change Log ========== +## 1.3.0 + +- Support @Superclass hierarchies +- Support @Embedded types in Jackson serialization +- Support mixed Kotlin queries (note this is an API change to Kotlin partial select statements) +- Fix incorrect join alias generated in query +- Fix Android gradle plugin update 2.3.0 not working with entities using databinding +- Fix Kotlin insert into select query +- Fix non-null constraint not generated on Postgres +- Fix @View entities created as tables during schema generation + ## 1.2.1 - Support row value expressions diff --git a/README.md b/README.md index 1b0f3df2..d56af1df 100644 --- a/README.md +++ b/README.md @@ -274,9 +274,9 @@ repositories { } dependencies { - 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' + 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' } ``` diff --git a/build.gradle b/build.gradle index f4c881b7..0ccc8ea8 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ idea { } group = 'io.requery' -version = '1.2.1' +version = '1.3.0' description = 'A light but powerful object mapper and SQL generator for Java/Android' Properties properties = new Properties()