diff --git a/CHANGELOG.md b/CHANGELOG.md index fd58ead8..5373d2ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ Change Log ========= -Version 0.5.0 *(In Development)* --------------------------------- +Version 0.5.1 *(2016-02-03)* +---------------------------- + + * New: Query logs now contain timing information on how long they took to execute. This only covers + the time until a `Cursor` was made available, not object mapping or delivering to subscribers. + * Fix: Switch query logging to happen when `Query.run` is called, not when a query is triggered. + * Fix: Check for subscribing inside a transaction using a more accurate primitive. + + +Version 0.5.0 *(2015-12-09)* +---------------------------- * New: Expose `mapToOne`, `mapToOneOrDefault`, and `mapToList` as static methods on `Query`. These mirror the behavior of the methods of the same name on `QueryObservable` but can be used later in diff --git a/README.md b/README.md index 493e6850..dd1d9e00 100755 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Download -------- ```groovy -compile 'com.squareup.sqlbrite:sqlbrite:0.5.0' +compile 'com.squareup.sqlbrite:sqlbrite:0.5.1' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index b34fa99f..efda8de2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqlbrite -VERSION_NAME=0.5.1-SNAPSHOT +VERSION_NAME=0.5.1 POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.