Skip to content

Commit e1bed47

Browse files
committed
Bump SQLite to v3.49.0
1 parent f5c56ca commit e1bed47

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Change Log
22
==========
33

44
## 3.48.0
5+
- [SQLite 3.49.0](https://www.sqlite.org/releaselog/3_49_0.html)
56
- [SQLite 3.48.0](https://www.sqlite.org/releaselog/3_48_0.html)
67
- [SQLite 3.47.2](https://www.sqlite.org/releaselog/3_47_2.html)
78
- [SQLite 3.47.1](https://www.sqlite.org/releaselog/3_47_2.html)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Then add the sqlite-android artifact from this repository as a dependency:
5151

5252
```gradle
5353
dependencies {
54-
implementation 'com.github.requery:sqlite-android:3.48.0'
54+
implementation 'com.github.requery:sqlite-android:3.49.0'
5555
}
5656
```
5757
Then change usages of `android.database.sqlite.SQLiteDatabase` to
@@ -115,7 +115,7 @@ Versioning
115115
----------
116116

117117
The library is versioned after the version of SQLite it contains. For changes specific to just the
118-
wrapper API, a revision number is added, e.g., 3.47.2-X, where X is the revision number.
118+
wrapper API, a revision number is added, e.g., 3.49.0-X, where X is the revision number.
119119

120120
Acknowledgements
121121
----------------

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
1616
android.useAndroidX=true
1717
#
1818
GROUP=io.requery
19-
VERSION_NAME=3.48.0-SNAPSHOT
19+
VERSION_NAME=3.49.0-SNAPSHOT
2020
#
2121
POM_DEVELOPER_ID=TODO
2222
POM_DEVELOPER_NAME=TODO

sqlite-android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88

99
android {
1010
buildToolsVersion = "35.0.1"
11-
ndkVersion "27.2.12479018"
11+
ndkVersion "28.0.13004108"
1212

1313
compileSdk 35
1414

@@ -58,7 +58,7 @@ dependencies {
5858
}
5959

6060
ext {
61-
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3480000.zip"
61+
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3490000.zip"
6262
}
6363

6464
tasks.register("downloadSqlite", Download) {

0 commit comments

Comments
 (0)