Skip to content

Commit

Permalink
Prepare for release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecKazakova committed Mar 1, 2019
1 parent 452a51c commit 5b335a1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Change Log
Version 1.1.0 *(2019-02-27)*
----------------------------

* Fix: [Gradle] Fix module dependency compilation for android projects.
* Fix: [Gradle] #1246 Set up api dependencies in afterEvaluate.
* Fix: [Compiler] Array types are properly printed.

Version 1.1.0 *(2019-02-27)*
----------------------------

* New: [Gradle] #502 Allow specifying schema module dependencies.
* Enhancement: [Compiler] #1111 Table errors are sorted before other errors.
* Fix: [Compiler] #1225 Return the correct type for REAL literals.
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.0.3"
implementation "com.squareup.sqldelight:android-driver:1.1.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.0.3"
implementation "com.squareup.sqldelight:ios-driver:1.1.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.0.3"
implementation "com.squareup.sqldelight:sqlite-driver:1.1.1"
}
```
```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.0.3"
implementation "com.squareup.sqldelight:rxjava2-extensions:1.1.1"
}
```

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.0.3"
implementation "com.squareup.sqldelight:android-paging-extensions:1.1.1"
}
```

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

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

<change-notes><![CDATA[
<p>
1.1.1
<ul>
<li>Fix: [Gradle] Fix module dependency compilation for android projects.</li>
<li>Fix: [Gradle] Set up api dependencies in afterEvaluate.</li>
<li>Fix: [Compiler] Array types are properly printed.</li>
</ul>
</p>
<p>
1.1.0
<ul>
<li>New: [Gradle] Allow specifying schema module dependencies.</li>
Expand Down

0 comments on commit 5b335a1

Please sign in to comment.