From fb8230a23be1eb95f3e06669d44e26a139651f13 Mon Sep 17 00:00:00 2001 From: Nikhil Purushe Date: Sat, 18 Feb 2017 22:11:10 -0800 Subject: [PATCH] Update version to 1.2.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 8 ++++---- build.gradle | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39d27f60..5b270b30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change Log ========== +## 1.2.0 + +- Support Jackson serialization with a new Jackson serialization module (requery-jackson) +- Support insert into select query +- Support additional query functions +- Support improved for Immutable.org types +- Fix unique constraints not applied during table generation +- Fix closing connection/statement if an exception is thrown during prepare +- Fix ClassCastException when using a function in a where expression +- Fix NPE when a junction table contains a non-associative attribute +- Fix unsupported on update clause generated when using an Oracle database +- Fix Kotlin EntityStore delete should return a nullable type + ## 1.1.2 - Support @View annotation for mapping entities to table views diff --git a/README.md b/README.md index 237a99cf..f5dc1bbf 100644 --- a/README.md +++ b/README.md @@ -274,9 +274,9 @@ repositories { } dependencies { - compile 'io.requery:requery:1.1.2' - compile 'io.requery:requery-android:1.1.2' // for android - annotationProcessor 'io.requery:requery-processor:1.1.2' + 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' } ``` @@ -285,7 +285,7 @@ For information on gradle and annotation processing & gradle see the [wiki](http License ------- - Copyright (C) 2016 requery.io + Copyright (C) 2017 requery.io Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.gradle b/build.gradle index 7c145341..2dba62f5 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ idea { } group = 'io.requery' -version = '1.1.2' +version = '1.2.0' description = 'A light but powerful object mapper and SQL generator for Java/Android' Properties properties = new Properties()