Skip to content

Commit

Permalink
Prepare for release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecKazakova committed Jan 27, 2019
1 parent 35aaae1 commit 3333906
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
----------------------------

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
7 changes: 7 additions & 0 deletions sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@

<change-notes><![CDATA[
<p>
1.0.2
<ul>
<li>Fix: [Gradle Plugin] Update to kotlin 1.3.20.</li>
<li>Fix: [Runtime] Transactions no longer swallow exceptions.</li>
</ul>
</p>
<p>
1.0.1
<ul>
<li>Enhancement: [Native Driver] Allow passing directory name to DatabaseConfiguration.</li>
Expand Down

0 comments on commit 3333906

Please sign in to comment.