diff --git a/CHANGELOG.md b/CHANGELOG.md index 74ddf67..6878b56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log ========== +## 3.51.1 +- [SQLite 3.51.1](https://www.sqlite.org/releaselog/3_51_1.html) +- [SQLite 3.51.0](https://www.sqlite.org/releaselog/3_51_0.html) + ## 3.50.4 - [SQLite 3.50.4](https://www.sqlite.org/releaselog/3_50_4.html) - [SQLite 3.50.3](https://www.sqlite.org/releaselog/3_50_3.html) diff --git a/README.md b/README.md index 6ba02eb..2282422 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Then add the sqlite-android artifact from this repository as a dependency: ```gradle dependencies { - implementation 'com.github.requery:sqlite-android:3.50.4' + implementation 'com.github.requery:sqlite-android:3.51.1' } ``` Then change usages of `android.database.sqlite.SQLiteDatabase` to @@ -115,7 +115,7 @@ Versioning ---------- The library is versioned after the version of SQLite it contains. For changes specific to just the -wrapper API, a revision number is added, e.g., 3.50.4-X, where X is the revision number. +wrapper API, a revision number is added, e.g., 3.51.1-X, where X is the revision number. Acknowledgements ---------------- diff --git a/build.gradle b/build.gradle index 09606df..1ef4c84 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ plugins { - id "com.android.library" version "8.13.0" apply false + id "com.android.library" version "8.13.1" apply false id "de.undercouch.download" version "5.6.0" apply false } diff --git a/gradle.properties b/gradle.properties index 0d327a0..eaa82c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" android.useAndroidX=true # GROUP=io.requery -VERSION_NAME=3.50.4-SNAPSHOT +VERSION_NAME=3.51.1-SNAPSHOT # POM_DEVELOPER_ID=TODO POM_DEVELOPER_NAME=TODO diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ab521aa..cd4b7aa 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle index 0ef24bc..94d3697 100644 --- a/sqlite-android/build.gradle +++ b/sqlite-android/build.gradle @@ -1,7 +1,7 @@ plugins { id "de.undercouch.download" id "com.android.library" - id "com.vanniktech.maven.publish" version "0.34.0" + id "com.vanniktech.maven.publish" version "0.35.0" } android { @@ -58,7 +58,7 @@ dependencies { } ext { - sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3500400.zip" + sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3510100.zip" } tasks.register("downloadSqlite", Download) {