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

Commit

Permalink
Prepare version 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Feb 17, 2016
1 parent 1b8d7bb commit 1d58ef3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Change Log
=========

Version 0.6.0 *(2016-02-17)*
----------------------------

* New: Require a `Scheduler` when wrapping a database or content provider which will be used when
sending query triggers. This allows the query to be run in subsequent operators without needing an
additional `observeOn`. It also eliminates the need to use `subscribeOn` since the supplied
`Scheduler` will be used for all emissions (similar to RxJava's `timer`, `interval`, etc.).

This also corrects a potential violation of the RxJava contract and potential source of bugs in that
all triggers will occur on the supplied `Scheduler`. Previously the initial value would trigger
synchronously (on the subscribing thread) while subsequent ones trigger on the thread which
performed the transaction. The new behavior puts the initial trigger on the same thread as all
subsequent triggers and also does not force transactions to block while sending triggers.


Version 0.5.1 *(2016-02-03)*
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Download
--------

```groovy
compile 'com.squareup.sqlbrite:sqlbrite:0.5.1'
compile 'com.squareup.sqlbrite:sqlbrite:0.6.0'
```

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.5.2-SNAPSHOT
VERSION_NAME=0.6.0

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

Expand Down

0 comments on commit 1d58ef3

Please sign in to comment.