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

Commit 1d58ef3

Browse files
committed
Prepare version 0.6.0.
1 parent 1b8d7bb commit 1d58ef3

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

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

4+
Version 0.6.0 *(2016-02-17)*
5+
----------------------------
6+
7+
* New: Require a `Scheduler` when wrapping a database or content provider which will be used when
8+
sending query triggers. This allows the query to be run in subsequent operators without needing an
9+
additional `observeOn`. It also eliminates the need to use `subscribeOn` since the supplied
10+
`Scheduler` will be used for all emissions (similar to RxJava's `timer`, `interval`, etc.).
11+
12+
This also corrects a potential violation of the RxJava contract and potential source of bugs in that
13+
all triggers will occur on the supplied `Scheduler`. Previously the initial value would trigger
14+
synchronously (on the subscribing thread) while subsequent ones trigger on the thread which
15+
performed the transaction. The new behavior puts the initial trigger on the same thread as all
16+
subsequent triggers and also does not force transactions to block while sending triggers.
17+
18+
419
Version 0.5.1 *(2016-02-03)*
520
----------------------------
621

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Download
148148
--------
149149

150150
```groovy
151-
compile 'com.squareup.sqlbrite:sqlbrite:0.5.1'
151+
compile 'com.squareup.sqlbrite:sqlbrite:0.6.0'
152152
```
153153

154154
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.5.2-SNAPSHOT
2+
VERSION_NAME=0.6.0
33

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

0 commit comments

Comments
 (0)