From 9e342efa01bf3021945cebae464cf7e6b2b44957 Mon Sep 17 00:00:00 2001 From: Ihor Kushnirenko Date: Thu, 31 Oct 2024 04:22:28 +0200 Subject: [PATCH] Update to v3.47.0 --- CHANGELOG.md | 6 ++++-- README.md | 4 ++-- build.gradle | 2 +- gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- sqlite-android/build.gradle | 12 ++++++------ 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a920aa..df33e11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,14 @@ Change Log ========== -## 3.46.0 +## 3.47.0 +- [SQLite 3.47.0](https://www.sqlite.org/releaselog/3_47_0.html) +- [SQLite 3.46.1](https://www.sqlite.org/releaselog/3_46_1.html) - [SQLite 3.46.0](https://www.sqlite.org/releaselog/3_46_0.html) - [SQLite 3.45.3](https://www.sqlite.org/releaselog/3_45_3.html) - [SQLite 3.45.2](https://www.sqlite.org/releaselog/3_45_2.html) - [SQLite 3.45.1](https://www.sqlite.org/releaselog/3_45_2.html) -- + ## 3.45.0 - [SQLite 3.45.0](https://www.sqlite.org/releaselog/3_45_0.html) - [SQLite 3.44.2](https://www.sqlite.org/releaselog/3_44_2.html) diff --git a/README.md b/README.md index 86de324..5a25575 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.46.0' + implementation 'com.github.requery:sqlite-android:3.47.0' } ``` 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.46.0-X, where X is the revision number. +wrapper API, a revision number is added e.g., 3.47.0-X, where X is the revision number. Acknowledgements ---------------- diff --git a/build.gradle b/build.gradle index d9bc0c7..cc5b47a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ plugins { - id "com.android.library" version "8.5.1" apply false + id "com.android.library" version "8.7.1" apply false id "de.undercouch.download" version "5.6.0" apply false } diff --git a/gradle.properties b/gradle.properties index 2811267..e69f21b 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.45.0-SNAPSHOT +VERSION_NAME=3.47.0-SNAPSHOT # POM_DEVELOPER_ID=TODO POM_DEVELOPER_NAME=TODO diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 171d876..5c40527 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-8.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle index 3e2a338..cfba82b 100644 --- a/sqlite-android/build.gradle +++ b/sqlite-android/build.gradle @@ -3,14 +3,14 @@ import com.vanniktech.maven.publish.SonatypeHost plugins { id "de.undercouch.download" id "com.android.library" - id "com.vanniktech.maven.publish" version "0.29.0" + id "com.vanniktech.maven.publish" version "0.30.0" } android { buildToolsVersion = "35.0.0" - ndkVersion "26.3.11579264" + ndkVersion "27.2.12479018" - compileSdk 34 + compileSdk 35 namespace "io.requery.android.sqlite" @@ -48,17 +48,17 @@ android { } dependencies { - api("androidx.core:core:1.13.1") + api("androidx.core:core:1.15.0") api("androidx.sqlite:sqlite:2.4.0") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test:core:1.6.1") - androidTestImplementation("androidx.test:runner:1.6.1") + androidTestImplementation("androidx.test:runner:1.6.2") androidTestImplementation("androidx.test:rules:1.6.1") androidTestImplementation("androidx.test.ext:junit:1.2.1") } ext { - sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3460000.zip" + sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3470000.zip" } tasks.register("downloadSqlite", Download) {