Skip to content

Commit a1f3c10

Browse files
committed
Update SQLite to v3.51.0 and Gradle to v9.2.0
1 parent 0eb7d93 commit a1f3c10

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change Log
22
==========
33

4+
## 3.51.0
5+
- [SQLite 3.51.0](https://www.sqlite.org/releaselog/3_51_0.html)
6+
47
## 3.50.4
58
- [SQLite 3.50.4](https://www.sqlite.org/releaselog/3_50_4.html)
69
- [SQLite 3.50.3](https://www.sqlite.org/releaselog/3_50_3.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.50.4'
54+
implementation 'com.github.requery:sqlite-android:3.51.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.50.4-X, where X is the revision number.
118+
wrapper API, a revision number is added, e.g., 3.51.0-X, where X is the revision number.
119119

120120
Acknowledgements
121121
----------------
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies {
5858
}
5959

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

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

0 commit comments

Comments
 (0)