Skip to content

Commit

Permalink
Prepare for release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecKazakova committed Apr 14, 2019
1 parent 08866c7 commit b421ba2
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

Version 1.1.2 *(2019-04-14)*
----------------------------

* New: [Runtime] #1267 Logging driver decorator.
* Fix: [Compiler] #1254 Split string literals which are longer than 2^16 characters.
* Fix: [Gradle] #1260 generated sources are recognized as iOS source in Multiplatform Project.
* Fix: [IDE] #1290 kotlin.KotlinNullPointerException in CopyAsSqliteAction.kt:43.
* Fix: [Gradle] #1268 Running linkDebugFrameworkIos* tasks fail in recent versions.

Version 1.1.1 *(2019-03-01)*
----------------------------

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
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.1.1"
implementation "com.squareup.sqldelight:android-driver:1.1.2"
}
```
```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.1.1"
implementation "com.squareup.sqldelight:ios-driver:1.1.2"
}
// 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.1.1"
implementation "com.squareup.sqldelight:sqlite-driver:1.1.2"
}
```
```kotlin
Expand Down Expand Up @@ -263,7 +263,7 @@ To observe a query, depend on the RxJava extensions artifact and use the extensi

```groovy
dependencies {
implementation "com.squareup.sqldelight:rxjava2-extensions:1.1.1"
implementation "com.squareup.sqldelight:rxjava2-extensions:1.1.2"
}
```

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

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

Expand Down Expand Up @@ -353,7 +353,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:1.1.1'
classpath 'com.squareup.sqldelight:gradle-plugin:1.1.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.2.0-SNAPSHOT
VERSION_NAME=1.1.2

POM_URL=https://github.com/square/sqldelight/
POM_SCM_URL=https://github.com/square/sqldelight/
Expand Down
10 changes: 10 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,16 @@

<change-notes><![CDATA[
<p>
1.1.2
<ul>
<li>New: [Runtime] Logging driver decorator.</li>
<li>Fix: [Compiler] Split string literals which are longer than 2^16 characters.</li>
<li>Fix: [Gradle] generated sources are recognized as iOS source in Multiplatform Project.</li>
<li>Fix: [IDE] kotlin.KotlinNullPointerException in CopyAsSqliteAction.kt:43.</li>
<li>Fix: [Gradle] Running linkDebugFrameworkIos* tasks fail in recent versions.</li>
</ul>
</p>
<p>
1.1.1
<ul>
<li>Fix: [Gradle] Fix module dependency compilation for android projects.</li>
Expand Down

0 comments on commit b421ba2

Please sign in to comment.