From 962fc8b51b388fb144765164e18300232b02db3c Mon Sep 17 00:00:00 2001 From: Nikhil Purushe Date: Sun, 5 May 2019 22:58:40 -0700 Subject: [PATCH] Update version to 1.6.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 8 ++++---- build.gradle | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b338840..1163f9da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Change Log ========== +## 1.6.0 + +- Java 9 use new @Generated annotation +- RxJava 1.0 support removed +- Generate error if setter present for read-only field +- SQLServer default map dates to datetime2 instead of timestamp +- PostgresSQL fix default UUID type mapping +- Android support AndroidX libraries +- Add Spring boot example + ## 1.5.1 - Add min/max to base expression functions diff --git a/README.md b/README.md index 1753ef60..4b2db704 100644 --- a/README.md +++ b/README.md @@ -272,9 +272,9 @@ repositories { } dependencies { - compile 'io.requery:requery:1.5.1' - compile 'io.requery:requery-android:1.5.1' // for android - annotationProcessor 'io.requery:requery-processor:1.5.1' + compile 'io.requery:requery:1.6.0' + compile 'io.requery:requery-android:1.6.0' // for android + annotationProcessor 'io.requery:requery-processor:1.6.0' } ``` @@ -283,7 +283,7 @@ For information on gradle and annotation processing & gradle see the [wiki](http License ------- - Copyright (C) 2018 requery.io + Copyright (C) 2019 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 56e96012..55d16424 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ idea { } group = 'io.requery' -version = '1.5.1' +version = '1.6.0' description = 'A light but powerful object mapper and SQL generator for Java/Android' Properties properties = new Properties()