Skip to content

Commit

Permalink
Update version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed May 6, 2019
1 parent 3070590 commit 962fc8b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions 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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -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'
}
```

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -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()
Expand Down

0 comments on commit 962fc8b

Please sign in to comment.