Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
Change Log
==========

## 3.48.0
## 3.50.1
- [SQLite 3.50.1](https://www.sqlite.org/releaselog/3_50_1.html)
- [SQLite 3.50.0](https://www.sqlite.org/releaselog/3_50_0.html)
- [SQLite 3.49.2](https://www.sqlite.org/releaselog/3_49_2.html)
- [SQLite 3.49.1](https://www.sqlite.org/releaselog/3_49_1.html)

## 3.49.0
- [SQLite 3.49.0](https://www.sqlite.org/releaselog/3_49_0.html)
- [SQLite 3.48.0](https://www.sqlite.org/releaselog/3_48_0.html)
- [SQLite 3.47.2](https://www.sqlite.org/releaselog/3_47_2.html)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.49.0'
implementation 'com.github.requery:sqlite-android:3.50.1'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down Expand Up @@ -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.49.0-X, where X is the revision number.
wrapper API, a revision number is added, e.g., 3.50.1-X, where X is the revision number.

Acknowledgements
----------------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id "com.android.library" version "8.8.0" apply false
id "com.android.library" version "8.10.1" apply false
id "de.undercouch.download" version "5.6.0" apply false
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
android.useAndroidX=true
#
GROUP=io.requery
VERSION_NAME=3.49.0-SNAPSHOT
VERSION_NAME=3.50.1-SNAPSHOT
#
POM_DEVELOPER_ID=TODO
POM_DEVELOPER_NAME=TODO
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
12 changes: 6 additions & 6 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.30.0"
id "com.vanniktech.maven.publish" version "0.32.0"
}

android {
buildToolsVersion = "35.0.1"
ndkVersion "28.0.13004108"
buildToolsVersion = "36.0.0"
ndkVersion "28.1.13356709"

compileSdk 35
compileSdk 36

namespace "io.requery.android.sqlite"

Expand Down Expand Up @@ -48,7 +48,7 @@ android {
}

dependencies {
api("androidx.core:core:1.15.0")
api("androidx.core:core:1.16.0")
api("androidx.sqlite:sqlite:2.4.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test:core:1.6.1")
Expand All @@ -58,7 +58,7 @@ dependencies {
}

ext {
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3490000.zip"
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3500100.zip"
}

tasks.register("downloadSqlite", Download) {
Expand Down
Loading