diff --git a/CHANGELOG.md b/CHANGELOG.md index 74ddf67..ce29fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +## 3.52.0 +- [SQLite 3.52.0](https://www.sqlite.org/releaselog/3_52_0.html) +- [SQLite 3.51.2](https://www.sqlite.org/releaselog/3_51_2.html) +- [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..743aba5 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ ![Build Status](https://github.com/requery/sqlite-android/actions/workflows/ci.yml/badge.svg) [![Download](https://jitpack.io/v/requery/sqlite-android.svg)](https://jitpack.io/#requery/sqlite-android) -This is an Android specific distribution of the latest versions of SQLite. -It contains the latest SQLite version and the Android specific database APIs +This is an Android-specific distribution of the latest versions of SQLite. +It contains the latest SQLite version and the Android-specific database APIs derived from AOSP packaged as an AAR library distributed on jitpack. Why? @@ -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.52.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.50.4-X, where X is the revision number. +wrapper API, a revision number is added, e.g., 3.52.0-X, where X is the revision number. Acknowledgements ---------------- @@ -153,7 +153,7 @@ Changes License ------- - Copyright (C) 2017-2025 requery.io + Copyright (C) 2017-2026 requery.io Copyright (C) 2005-2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/build.gradle b/build.gradle index 09606df..3171b54 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ plugins { - id "com.android.library" version "8.13.0" apply false - id "de.undercouch.download" version "5.6.0" apply false + id "com.android.library" version "8.13.2" apply false + id "de.undercouch.download" version "5.7.0" apply false } diff --git a/gradle.properties b/gradle.properties index 0d327a0..841da63 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.52.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 ab521aa..e1f0f9a 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.4.0-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..3289a01 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.36.0" } android { @@ -58,7 +58,7 @@ dependencies { } ext { - sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3500400.zip" + sqliteDistributionUrl = "https://www.sqlite.org/2026/sqlite-amalgamation-3520000.zip" } tasks.register("downloadSqlite", Download) {