diff --git a/CHANGELOG.md b/CHANGELOG.md index a56e9aa5..766f7e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Change Log ========== +## 3.38.5 +- [SQLite 3.38.5](https://www.sqlite.org/releaselog/3_38_5.html) + ## 3.38.4 - [SQLite 3.38.4](https://www.sqlite.org/releaselog/3_38_4.html) - [SQLite 3.38.3](https://www.sqlite.org/releaselog/3_38_3.html) diff --git a/README.md b/README.md index 48bbb4fe..7ee6ce0a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Then add the sqlite-android artifact from this repository as a dependency: ```gradle dependencies { - implementation 'com.github.requery:sqlite-android:3.38.4' + implementation 'com.github.requery:sqlite-android:3.38.5' } ``` Then change usages of `android.database.sqlite.SQLiteDatabase` to diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle index ae042694..f753202f 100644 --- a/sqlite-android/build.gradle +++ b/sqlite-android/build.gradle @@ -7,7 +7,7 @@ apply plugin: 'maven-publish' apply plugin: 'de.undercouch.download' group = 'io.requery' -version = '3.38.4' +version = '3.38.5' description = 'Android SQLite compatibility library' android { @@ -58,7 +58,7 @@ dependencies { } ext { - sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3380400.zip' + sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3380500.zip' pomXml = { resolveStrategy = DELEGATE_FIRST name project.name