From f8edf883a3eb7463221757154aaaafcabe21afa0 Mon Sep 17 00:00:00 2001 From: Nikhil Purushe Date: Tue, 13 Sep 2016 21:25:22 -0700 Subject: [PATCH] Update version to 3.14.2 --- CHANGELOG.md | 5 +++++ README.md | 2 +- sqlite-android/build.gradle | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5dd1104..449b47a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +## 3.14.2 + +- [SQLite 3.14.2](https://www.sqlite.org/releaselog/3_14_2.html) +- Removed code that disabled WAL when executing a ATTACH statement + ## 3.14.1 - [SQLite 3.14.1](https://www.sqlite.org/releaselog/3_14_1.html) diff --git a/README.md b/README.md index b7328db2..2e9c3365 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Usage ```gradle dependencies { - compile 'io.requery:sqlite-android:3.14.1' + compile 'io.requery:sqlite-android:3.14.2' } ``` Then change usages of `android.database.sqlite.SQLiteDatabase` to diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle index c1f045ef..e623e6fb 100644 --- a/sqlite-android/build.gradle +++ b/sqlite-android/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'com.jfrog.bintray' import de.undercouch.gradle.tasks.download.Download group = 'io.requery' -version = '3.14.1' +version = '3.14.2' description = 'Android SQLite compatibility library' gradle.projectsEvaluated { @@ -47,7 +47,7 @@ android { } dependencies { - compile 'com.android.support:support-v4:24.1.1' + compile 'com.android.support:support-v4:24.2.0' androidTestCompile 'com.android.support.test:runner:0.5' androidTestCompile 'com.android.support.test:rules:0.5' } @@ -56,7 +56,7 @@ publish.dependsOn assembleRelease bintrayUpload.dependsOn assembleRelease ext { - sqliteDistributionUrl = 'https://www.sqlite.org/2016/sqlite-amalgamation-3140100.zip' + sqliteDistributionUrl = 'https://www.sqlite.org/2016/sqlite-amalgamation-3140200.zip' pomXml = { resolveStrategy = Closure.DELEGATE_FIRST name project.name