Skip to content

Commit

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

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

0 comments on commit 62ca776

Please sign in to comment.