From 4ba8528a5acdc1721bd8a1a0566a8d86bc78ca28 Mon Sep 17 00:00:00 2001 From: Dmitrii Nikitin Date: Fri, 29 Sep 2017 12:13:22 +0500 Subject: [PATCH] Release v2.0.0 (#822) --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ gradle.properties | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d56e655f0..3e55d432b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,42 @@ StorIO Change Log ========== +## Version 2.0.0 + +_2017_09_12_ + +* **Interceptors API!** :tada::tada: Many thanks to [@rsinukov](https://github.com/rsinukov) +* Logging via interceptors (just add `LoggingInterceptor`). +* Remove deprecated `createObservable` and `internal`. You should use `asRxObservable` and `lowLevel` instead. +* `mapFromCursor` receives `StorIOSqlite`/`StorIOContentResolver` as parameter. +* Remove `Query.CompleteBuilder.whereArgs(list)`. Please use vararg overload instead. +* Add ability to use vals instead of vars in classes for resolver generation. +* Fix message in case creator parameters do not match columns. +* Fix case with different classes having fields with the same names. +* Add SQLDelight interaction example. +* Gradle 3.5. +* Checkstyle 7.7. +* Kotlin 1.1.2. +* Gradle plugin 2.3.3. +* Support library 25.3.1. +* Compile testing tool 0.11. + +**Changes:** + +* [PR 542](https://github.com/pushtorefresh/storio/pull/542): Interceptors API and `LoggingInterceptor`. +* [PR 812](https://github.com/pushtorefresh/storio/pull/812): Remove deprecated `createObservable` and `internal`. +* [PR 817](https://github.com/pushtorefresh/storio/pull/817): Add `storIOSqlite` parameter to get resolver. +* [PR 818](https://github.com/pushtorefresh/storio/pull/818): Add `storIOContentResolver` parameter to get resolver. +* [PR 819](https://github.com/pushtorefresh/storio/pull/819): Remove `Query.CompleteBuilder.whereArgs(list)`. +* [PR 802](https://github.com/pushtorefresh/storio/pull/802): Add ability to use vals instead of vars in classes for resolver generation. +* [PR 797](https://github.com/pushtorefresh/storio/pull/797): Fix message in case creator parameters do not match columns. +* [PR 803](https://github.com/pushtorefresh/storio/pull/803): Gradle plugin 2.3.3. Fix case with different classes having fields with the same names. +* [PR 814](https://github.com/pushtorefresh/storio/pull/814): Add SQLDelight interaction example. +* [PR 790](https://github.com/pushtorefresh/storio/pull/790): Gradle 3.5, Checkstyle 7.7. +* [PR 792](https://github.com/pushtorefresh/storio/pull/792): Kotlin 1.1.2. +* [PR 794](https://github.com/pushtorefresh/storio/pull/794): Support library 25.3.1. +* [PR 816](https://github.com/pushtorefresh/storio/pull/816): Compile testing tool 0.11. + ## Version 1.13.0 _2017_05_15_ diff --git a/gradle.properties b/gradle.properties index 4f5c04c6a..5dd77a32a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_CODE=29 +VERSION_CODE=30 GROUP=com.pushtorefresh.storio2 POM_DESCRIPTION=Modern API for SQLiteDatabase and ContentResolver