Skip to content
This repository was archived by the owner on Aug 17, 2020. It is now read-only.

Commit 7a99ceb

Browse files
committed
Prepare release 0.3.1.
1 parent c6db534 commit 7a99ceb

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Change Log
22
=========
33

4+
Version 0.3.1 *(2015-09-02)*
5+
----------------------------
6+
7+
* New: `mapToOne` and `mapToOneOrNull` operators on `QueryObservable`. These work on queries which
8+
return 0 or 1 rows and are a convenience for turning them into a type `T` given a mapper of type
9+
`Func1<Cursor, T>` (the same which can be used for `mapToList`).
10+
* Fix: Remove `@WorkerThread` annotations for now. Various combinations of lint, RxJava, and
11+
retrolambda can cause false-positives.
12+
13+
414
Version 0.3.0 *(2015-08-31)*
515
----------------------------
616

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Download
144144
--------
145145

146146
```groovy
147-
compile 'com.squareup.sqlbrite:sqlbrite:0.3.0'
147+
compile 'com.squareup.sqlbrite:sqlbrite:0.3.1'
148148
```
149149

150150
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.squareup.sqlbrite
2-
VERSION_NAME=0.3.1-SNAPSHOT
2+
VERSION_NAME=0.3.1
33

44
POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.
55

0 commit comments

Comments
 (0)