Skip to content

Commit

Permalink
Prepare for release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecKazakova committed Apr 14, 2019
1 parent da6dbd8 commit f2a931d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
Change Log
==========

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

* Gradle Metadata 1.0 release.

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

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.1.2"
implementation "com.squareup.sqldelight:android-driver:1.1.3"
}
```
```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.2"
implementation "com.squareup.sqldelight:ios-driver:1.1.3"
}
// 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.2"
implementation "com.squareup.sqldelight:sqlite-driver:1.1.3"
}
```
```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.2"
implementation "com.squareup.sqldelight:rxjava2-extensions:1.1.3"
}
```

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

Expand Down Expand Up @@ -353,7 +353,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.squareup.sqldelight:gradle-plugin:1.1.2'
classpath 'com.squareup.sqldelight:gradle-plugin:1.1.3'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.squareup.sqldelight
VERSION_NAME=1.2.0-SNAPSHOT
VERSION_NAME=1.1.3

POM_URL=https://github.com/square/sqldelight/
POM_SCM_URL=https://github.com/square/sqldelight/
Expand Down
6 changes: 6 additions & 0 deletions sqldelight-idea-plugin/src/main/resources/META-INF/plugin.xml
Expand Up @@ -16,6 +16,12 @@

<change-notes><![CDATA[
<p>
1.1.3
<ul>
<li>Gradle Metadata 1.0 release.</li>
</ul>
</p>
<p>
1.1.2
<ul>
<li>New: [Runtime] Logging driver decorator.</li>
Expand Down

0 comments on commit f2a931d

Please sign in to comment.