diff --git a/CHANGELOG.md b/CHANGELOG.md index 41732d08..00f1bb62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========= +Version 0.4.1 *(2015-10-19)* +---------------------------- + + * New: `execute` method provides the ability to execute arbitrary SQL statements. + * New: `executeAndTrigger` method provides the ability to execute arbitrary SQL statements and + notifying any queries to update on the specified table. + * Fix: `Query.asRows` no longer calls `onCompleted` when the downstream subscriber has unsubscribed. + + Version 0.4.0 *(2015-09-22)* ---------------------------- diff --git a/README.md b/README.md index cf35c08b..64343622 100755 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Download -------- ```groovy -compile 'com.squareup.sqlbrite:sqlbrite:0.4.0' +compile 'com.squareup.sqlbrite:sqlbrite:0.4.1' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index c8aa1b0c..71aff2ff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqlbrite -VERSION_NAME=0.4.1-SNAPSHOT +VERSION_NAME=0.4.1 POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.