diff --git a/CHANGELOG.md b/CHANGELOG.md index 83ac63e4cc2..8238af89a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +Version 1.0.2 *(2019-01-26)* +---------------------------- + +* Fix: [Gradle Plugin] Update to kotlin 1.3.20. +* Fix: [Runtime] Transactions no longer swallow exceptions. + Version 1.0.1 *(2019-01-21)* ---------------------------- diff --git a/README.md b/README.md index 7af2c4d0906..3f04ac06b21 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ From this SQLDelight will generate a `Database` Kotlin class with an associated #### Android ```groovy dependencies { - implementation "com.squareup.sqldelight:android-driver:1.0.1" + implementation "com.squareup.sqldelight:android-driver:1.0.2" } ``` ```kotlin @@ -36,7 +36,7 @@ val driver: SqlDriver = AndroidSqliteDriver(Database.Schema, context, "test.db") #### iOS (Using Kotlin/Native) ```groovy dependencies { - implementation "com.squareup.sqldelight:ios-driver:1.0.1" + implementation "com.squareup.sqldelight:ios-driver:1.0.2" } // You'll also need to have SQLite linked via -lsqlite3 during compilation. @@ -48,7 +48,7 @@ val driver: SqlDriver = NativeSqliteDriver(Database.Schema, "test.db") #### JVM ```groovy dependencies { - implementation "com.squareup.sqldelight:sqlite-driver:1.0.1" + implementation "com.squareup.sqldelight:sqlite-driver:1.0.2" } ``` ```kotlin @@ -262,7 +262,7 @@ To observe a query, depend on the RxJava extensions artifact and use the extensi ```groovy dependencies { - implementation "com.squareup.sqldelight:rxjava2-extensions:1.0.1" + implementation "com.squareup.sqldelight:rxjava2-extensions:1.0.2" } ``` @@ -302,7 +302,7 @@ To use SQLDelight with [Android's Paging Library](https://developer.android.com/ ```groovy dependencies { - implementation "com.squareup.sqldelight:android-paging-extensions:1.0.1" + implementation "com.squareup.sqldelight:android-paging-extensions:1.0.2" } ``` @@ -352,7 +352,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.squareup.sqldelight:gradle-plugin:1.0.1' + classpath 'com.squareup.sqldelight:gradle-plugin:1.0.2' } } diff --git a/gradle.properties b/gradle.properties index 988d7c74494..6c51cc24aaf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.sqldelight -VERSION_NAME=1.1.0-SNAPSHOT +VERSION_NAME=1.0.2 POM_URL=https://github.com/square/sqldelight/ POM_SCM_URL=https://github.com/square/sqldelight/ diff --git a/sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml b/sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml index f8bdd563279..488bceb30af 100644 --- a/sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml +++ b/sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml @@ -16,6 +16,13 @@ + 1.0.2 + +

+

1.0.1