diff --git a/CHANGELOG.md b/CHANGELOG.md index c9fc38fd..e10d411e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========= +Version 0.6.2 *(2016-03-01)* +---------------------------- + + * Fix: Document explicitly and correctly handle the fact that `Query.run()` can return `null` in + some situations. The `mapToOne`, `mapToOneOrDefault`, `mapToList`, and `asRows` helpers have all + been updated to handle this case and each is documented with their respective behavior. + + Version 0.6.1 *(2016-02-29)* ---------------------------- diff --git a/README.md b/README.md index c1e96b4d..0a2b37a0 100755 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ Download -------- ```groovy -compile 'com.squareup.sqlbrite:sqlbrite:0.6.1' +compile 'com.squareup.sqlbrite:sqlbrite:0.6.2' ``` Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index 9170f5a7..79478381 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqlbrite -VERSION_NAME=0.6.2-SNAPSHOT +VERSION_NAME=0.6.2 POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.