Skip to content

Commit 1efb4fd

Browse files
committed
Update SQLite to v3.51.3
1 parent 0736996 commit 1efb4fd

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Change Log
22
==========
33

4-
## 3.52.0
5-
- [SQLite 3.52.0](https://www.sqlite.org/releaselog/3_52_0.html)
4+
## 3.51.3
5+
- [SQLite 3.51.3](https://www.sqlite.org/releaselog/3_51_3.html)
66
- [SQLite 3.51.2](https://www.sqlite.org/releaselog/3_51_2.html)
77
- [SQLite 3.51.1](https://www.sqlite.org/releaselog/3_51_1.html)
88
- [SQLite 3.51.0](https://www.sqlite.org/releaselog/3_51_0.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.52.0'
54+
implementation 'com.github.requery:sqlite-android:3.51.3'
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.52.0-X, where X is the revision number.
118+
wrapper API, a revision number is added, e.g., 3.51.3-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.52.0-SNAPSHOT
19+
VERSION_NAME=3.51.3-SNAPSHOT
2020
#
2121
POM_DEVELOPER_ID=TODO
2222
POM_DEVELOPER_NAME=TODO

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/2026/sqlite-amalgamation-3520000.zip"
61+
sqliteDistributionUrl = "https://www.sqlite.org/2026/sqlite-amalgamation-3510300.zip"
6262
}
6363

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

0 commit comments

Comments
 (0)