Skip to content

Commit

Permalink
Update version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Jul 10, 2017
1 parent b719fbb commit 2c90101
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,21 @@
Change Log
==========

## 1.4.0

- Support item view types in Android RecyclerView adapter
- Support withTransaction overloads for Kotlin entity stores
- Support guava/streamsupport Optional types
- Rx support transaction methods modified to update in a more expected way
- Fix default value usage in inserts
- Fix aliased expression not usable in orderby clause
- Fix collection getters not used in Jackson serialization
- Fix collection modification behavior
- Fix cases where duplicate entity attributes would be generated
- Fix MutableResult not usable in an entity definition
- Fix Android unique column not being able to be added in an upgrade
- Fix Kotlin Update.set() method property support

## 1.3.2

- Fix Rx observable changes not triggered for nested transactions
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -274,9 +274,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.3.2'
compile 'io.requery:requery-android:1.3.2' // for android
annotationProcessor 'io.requery:requery-processor:1.3.2'
compile 'io.requery:requery:1.4.0'
compile 'io.requery:requery-android:1.4.0' // for android
annotationProcessor 'io.requery:requery-processor:1.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -35,7 +35,7 @@ idea {
}

group = 'io.requery'
version = '1.3.2'
version = '1.4.0'
description = 'A light but powerful object mapper and SQL generator for Java/Android'

Properties properties = new Properties()
Expand Down

0 comments on commit 2c90101

Please sign in to comment.