From 218b4e812a951967da0eb0e02289cf98e34aa33a Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Tue, 22 Sep 2015 15:04:01 -0400 Subject: [PATCH] Prepare for release 0.4.0. --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4689e1c7..41732d08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========= +Version 0.4.0 *(2015-09-22)* +---------------------------- + + * New: `mapToOneOrDefault` replaces `mapToOneOrNull` for more flexibility. + * Fix: Notifications of table updates as the result of a transaction now occur after the transaction + has been applied. Previous the notification would happen during the commit at which time it was + invalid to create a new transaction in a subscriber. + + Version 0.3.1 *(2015-09-02)* ---------------------------- diff --git a/README.md b/README.md index 89a56f13..7f57ceeb 100755 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Download -------- ```groovy -compile 'com.squareup.sqlbrite:sqlbrite:0.3.1' +compile 'com.squareup.sqlbrite:sqlbrite:0.4.0' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index ad8c81bb..877e5644 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqlbrite -VERSION_NAME=0.3.2-SNAPSHOT +VERSION_NAME=0.4.0 POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.