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

Commit

Permalink
Prepare release 0.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Sep 2, 2015
1 parent c6db534 commit 7a99ceb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<Cursor, T>` (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)*
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 7a99ceb

Please sign in to comment.