Skip to content

Commit 4fb4458

Browse files
authored
Update SQLite to v3.43.0 (#184)
1 parent 19a3213 commit 4fb4458

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

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.43.0
5+
- [SQLite 3.43.0](https://www.sqlite.org/releaselog/3_43_0.html)
6+
47
## 3.42.0
58
- [SQLite 3.42.0](https://www.sqlite.org/releaselog/3_42_0.html)
69
- [SQLite 3.41.2](https://www.sqlite.org/releaselog/3_41_2.html)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Why?
1515
- **Up-to-date**
1616

1717
Even the latest version of Android is several versions behind the latest version of SQLite.
18-
These versions do not have the bug fixes, performance improvements, or new features present in
18+
These versions do not have bug fixes, performance improvements, or new features present in
1919
current versions of SQLite. This problem is worse the older the version of the OS the device has.
2020
Using this library, you can keep up to date with the latest versions of SQLite and provide a
2121
consistent version across OS versions and devices.
@@ -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.42.0'
54+
implementation 'com.github.requery:sqlite-android:3.43.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.42.0-X, where X is the revision number.
118+
wrapper API, a revision number is added e.g. 3.43.0-X, where X is the revision number.
119119

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugins {
2-
id "com.android.library" version "8.0.1" apply false
2+
id "com.android.library" version "8.1.1" apply false
33
id "de.undercouch.download" version "5.4.0" apply false
44
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ POM_DEVELOPER_ID=TODO
2323
POM_DEVELOPER_NAME=TODO
2424
POM_DEVELOPER_URL=TODO
2525
POM_INCEPTION_YEAR=TODO
26-
VERSION_NAME=3.42.0-SNAPSHOT
26+
VERSION_NAME=3.43.0-SNAPSHOT
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-8.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import com.vanniktech.maven.publish.SonatypeHost
33
plugins {
44
id "de.undercouch.download"
55
id "com.android.library"
6-
id "com.vanniktech.maven.publish" version "0.25.2"
6+
id "com.vanniktech.maven.publish" version "0.25.3"
77
}
88

99
android {
10-
buildToolsVersion = "33.0.2"
10+
buildToolsVersion = "34.0.0"
1111
ndkVersion "25.2.9519653"
1212

13-
compileSdk 33
13+
compileSdk 34
1414

1515
namespace "io.requery.android.sqlite"
1616

@@ -36,8 +36,8 @@ android {
3636
abortOnError false
3737
}
3838
compileOptions {
39-
sourceCompatibility JavaVersion.VERSION_11
40-
targetCompatibility JavaVersion.VERSION_11
39+
sourceCompatibility JavaVersion.VERSION_17
40+
targetCompatibility JavaVersion.VERSION_17
4141
}
4242

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

6060
ext {
61-
sqliteDistributionUrl = "https://www.sqlite.org/2023/sqlite-amalgamation-3420000.zip"
61+
sqliteDistributionUrl = "https://www.sqlite.org/2023/sqlite-amalgamation-3430000.zip"
6262
}
6363

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

0 commit comments

Comments
 (0)