From 7a99ceba6a5d0876a3d9d72fdbf830b47758a6ee Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Wed, 2 Sep 2015 13:18:05 -0400 Subject: [PATCH] Prepare release 0.3.1. --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8017856c..4689e1c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Change Log ========= +Version 0.3.1 *(2015-09-02)* +---------------------------- + + * New: `mapToOne` and `mapToOneOrNull` operators on `QueryObservable`. These work on queries which + return 0 or 1 rows and are a convenience for turning them into a type `T` given a mapper of type + `Func1` (the same which can be used for `mapToList`). + * Fix: Remove `@WorkerThread` annotations for now. Various combinations of lint, RxJava, and + retrolambda can cause false-positives. + + Version 0.3.0 *(2015-08-31)* ---------------------------- diff --git a/README.md b/README.md index ec2cf01b..89a56f13 100755 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Download -------- ```groovy -compile 'com.squareup.sqlbrite:sqlbrite:0.3.0' +compile 'com.squareup.sqlbrite:sqlbrite:0.3.1' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index 3cc4140f..0b29b459 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqlbrite -VERSION_NAME=0.3.1-SNAPSHOT +VERSION_NAME=0.3.1 POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.