This repository was archived by the owner on Aug 17, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 11Change 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+
419Version 0.5.1 * (2016-02-03)*
520----------------------------
621
Original file line number Diff line number Diff 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
154154Snapshots of the development version are available in [ Sonatype's ` snapshots ` repository] [ snap ] .
Original file line number Diff line number Diff line change 11GROUP =com.squareup.sqlbrite
2- VERSION_NAME =0.5.2-SNAPSHOT
2+ VERSION_NAME =0.6.0
33
44POM_DESCRIPTION =A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.
55
You can’t perform that action at this time.
0 commit comments