diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dbc1b97..c4e1591a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +## 3.16.2 + +- [SQLite 3.16.2](https://sqlite.org/releaselog/3_16_2.html) +- Support additional SQLite open flags +- Add methods from DatabaseUtils into base classes + ## 3.16.0 - [SQLite 3.16.0](https://sqlite.org/releaselog/3_16_0.html) diff --git a/README.md b/README.md index 2485c9ec..78fefce3 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Usage ```gradle dependencies { - compile 'io.requery:sqlite-android:3.16.0' + compile 'io.requery:sqlite-android:3.16.2' } ``` Then change usages of `android.database.sqlite.SQLiteDatabase` to diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle index 3b2d65e9..c87a8b04 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.16.0' +version = '3.16.2' description = 'Android SQLite compatibility library' gradle.projectsEvaluated { @@ -56,7 +56,7 @@ publish.dependsOn "assembleRelease" bintrayUpload.dependsOn "assembleRelease" ext { - sqliteDistributionUrl = 'https://www.sqlite.org/2017/sqlite-amalgamation-3160000.zip' + sqliteDistributionUrl = 'http://sqlite.org/2017/sqlite-amalgamation-3160200.zip' pomXml = { resolveStrategy = Closure.DELEGATE_FIRST name project.name