Skip to content

Commit

Permalink
Update version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Feb 19, 2017
1 parent 99dc5c0 commit fb8230a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions 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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -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'
}
```

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

0 comments on commit fb8230a

Please sign in to comment.