Skip to content

Commit

Permalink
Prepare for release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecKazakova committed Dec 11, 2019
1 parent 31aaea4 commit e723166
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,16 @@
Change Log
==========

Version 1.2.1 *(2019-12-11)*
----------------------------

* Fix: [Gradle] Kotlin Native 1.3.60 support.
* Fix: [Gradle] #1287 Warning when syncing.
* Fix: [Compiler] #1469 SynetheticAccessor creation for query.
* Fix: [JVM Driver] Fixed memory leak.
* NOTE: The coroutine extension artifact requires kotlinx bintray maven
repository be added to your buildscript.

Version 1.2.0 *(2019-08-30)*
----------------------------

Expand Down
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -27,7 +27,7 @@ From this SQLDelight will generate a `Database` Kotlin class with an associated
#### Android
```groovy
dependencies {
implementation "com.squareup.sqldelight:android-driver:1.2.0"
implementation "com.squareup.sqldelight:android-driver:1.2.1"
}
```
```kotlin
Expand All @@ -37,7 +37,7 @@ val driver: SqlDriver = AndroidSqliteDriver(Database.Schema, context, "test.db")
#### iOS (Using Kotlin/Native)
```groovy
dependencies {
implementation "com.squareup.sqldelight:ios-driver:1.2.0"
implementation "com.squareup.sqldelight:ios-driver:1.2.1"
}
// You'll also need to have SQLite linked via -lsqlite3 during compilation.
Expand All @@ -49,7 +49,7 @@ val driver: SqlDriver = NativeSqliteDriver(Database.Schema, "test.db")
#### JVM
```groovy
dependencies {
implementation "com.squareup.sqldelight:sqlite-driver:1.2.0"
implementation "com.squareup.sqldelight:sqlite-driver:1.2.1"
}
```
```kotlin
Expand Down Expand Up @@ -282,7 +282,7 @@ To observe a query, depend on the RxJava extensions artifact and use the extensi

```groovy
dependencies {
implementation "com.squareup.sqldelight:rxjava2-extensions:1.2.0"
implementation "com.squareup.sqldelight:rxjava2-extensions:1.2.1"
}
```

Expand Down Expand Up @@ -322,7 +322,7 @@ To use SQLDelight with [Android's Paging Library](https://developer.android.com/

```groovy
dependencies {
implementation "com.squareup.sqldelight:android-paging-extensions:1.2.0"
implementation "com.squareup.sqldelight:android-paging-extensions:1.2.1"
}
```

Expand Down Expand Up @@ -375,7 +375,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:1.2.0'
classpath 'com.squareup.sqldelight:gradle-plugin:1.2.1'
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.squareup.sqldelight
VERSION_NAME=1.3.0-SNAPSHOT
VERSION_NAME=1.2.1

POM_URL=https://github.com/square/sqldelight/
POM_SCM_URL=https://github.com/square/sqldelight/
Expand All @@ -13,4 +13,4 @@ POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=square
POM_DEVELOPER_NAME=Square, Inc.

kapt.incremental.apt=false
kapt.incremental.apt=false
9 changes: 9 additions & 0 deletions sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml
Expand Up @@ -16,6 +16,15 @@

<change-notes><![CDATA[
<p>
1.2.1
<ul>
<li>Fix: [Gradle] Kotlin Native 1.3.60 support.</li>
<li>Fix: [Gradle] Warning when syncing.</li>
<li>Fix: [Compiler] SynetheticAccessor creation for query.</li>
<li>Fix: [JVM Driver] Fixed memory leak.</li>
</ul>
</p>
<p>
1.2.0
<ul>
<li>New: [Runtime] Stable Flow api.</li>
Expand Down

0 comments on commit e723166

Please sign in to comment.