Skip to content

Commit 0bbaa7a

Browse files
authored
Update SQLite to v3.50.4 (#208)
* Update SQLite to v3.50.1 and Gradle to v8.14.2 * Update SQLite to v3.50.4 and Gradle to v9.1.0
1 parent fc24cc4 commit 0bbaa7a

File tree

6 files changed

+28
-19
lines changed

6 files changed

+28
-19
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
Change Log
22
==========
33

4-
## 3.48.0
4+
## 3.50.4
5+
- [SQLite 3.50.4](https://www.sqlite.org/releaselog/3_50_4.html)
6+
- [SQLite 3.50.3](https://www.sqlite.org/releaselog/3_50_3.html)
7+
- [SQLite 3.50.2](https://www.sqlite.org/releaselog/3_50_2.html)
8+
- [SQLite 3.50.1](https://www.sqlite.org/releaselog/3_50_1.html)
9+
- [SQLite 3.50.0](https://www.sqlite.org/releaselog/3_50_0.html)
10+
- [SQLite 3.49.2](https://www.sqlite.org/releaselog/3_49_2.html)
11+
- [SQLite 3.49.1](https://www.sqlite.org/releaselog/3_49_1.html)
12+
13+
## 3.49.0
514
- [SQLite 3.49.0](https://www.sqlite.org/releaselog/3_49_0.html)
615
- [SQLite 3.48.0](https://www.sqlite.org/releaselog/3_48_0.html)
716
- [SQLite 3.47.2](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.49.0'
54+
implementation 'com.github.requery:sqlite-android:3.50.4'
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.49.0-X, where X is the revision number.
118+
wrapper API, a revision number is added, e.g., 3.50.4-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.8.0" apply false
2+
id "com.android.library" version "8.13.0" apply false
33
id "de.undercouch.download" version "5.6.0" apply false
44
}

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.49.0-SNAPSHOT
19+
VERSION_NAME=3.50.4-SNAPSHOT
2020
#
2121
POM_DEVELOPER_ID=TODO
2222
POM_DEVELOPER_NAME=TODO
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.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import com.vanniktech.maven.publish.SonatypeHost
2-
31
plugins {
42
id "de.undercouch.download"
53
id "com.android.library"
6-
id "com.vanniktech.maven.publish" version "0.30.0"
4+
id "com.vanniktech.maven.publish" version "0.34.0"
75
}
86

97
android {
10-
buildToolsVersion = "35.0.1"
11-
ndkVersion "28.0.13004108"
8+
buildToolsVersion = "36.1.0"
9+
ndkVersion "28.2.13676358"
1210

13-
compileSdk 35
11+
compileSdk {
12+
version = release(36)
13+
}
1414

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

@@ -48,17 +48,17 @@ android {
4848
}
4949

5050
dependencies {
51-
api("androidx.core:core:1.15.0")
51+
api("androidx.core:core:1.17.0")
5252
api("androidx.sqlite:sqlite:2.4.0")
5353
testImplementation("junit:junit:4.13.2")
54-
androidTestImplementation("androidx.test:core:1.6.1")
55-
androidTestImplementation("androidx.test:runner:1.6.2")
56-
androidTestImplementation("androidx.test:rules:1.6.1")
57-
androidTestImplementation("androidx.test.ext:junit:1.2.1")
54+
androidTestImplementation("androidx.test:core:1.7.0")
55+
androidTestImplementation("androidx.test:runner:1.7.0")
56+
androidTestImplementation("androidx.test:rules:1.7.0")
57+
androidTestImplementation("androidx.test.ext:junit:1.3.0")
5858
}
5959

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

6464
tasks.register("downloadSqlite", Download) {
@@ -94,6 +94,6 @@ tasks.register("javadoc", Javadoc) {
9494
}
9595

9696
mavenPublishing {
97-
publishToMavenCentral(SonatypeHost.DEFAULT, /* automaticRelease */ true)
97+
publishToMavenCentral(/* automaticRelease */ true)
9898
signAllPublications()
9999
}

0 commit comments

Comments
 (0)