Skip to content

Commit 9e342ef

Browse files
committed
Update to v3.47.0
1 parent fb5c226 commit 9e342ef

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

CHANGELOG.md

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

4-
## 3.46.0
4+
## 3.47.0
5+
- [SQLite 3.47.0](https://www.sqlite.org/releaselog/3_47_0.html)
6+
- [SQLite 3.46.1](https://www.sqlite.org/releaselog/3_46_1.html)
57
- [SQLite 3.46.0](https://www.sqlite.org/releaselog/3_46_0.html)
68
- [SQLite 3.45.3](https://www.sqlite.org/releaselog/3_45_3.html)
79
- [SQLite 3.45.2](https://www.sqlite.org/releaselog/3_45_2.html)
810
- [SQLite 3.45.1](https://www.sqlite.org/releaselog/3_45_2.html)
9-
-
11+
1012
## 3.45.0
1113
- [SQLite 3.45.0](https://www.sqlite.org/releaselog/3_45_0.html)
1214
- [SQLite 3.44.2](https://www.sqlite.org/releaselog/3_44_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.46.0'
54+
implementation 'com.github.requery:sqlite-android:3.47.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.46.0-X, where X is the revision number.
118+
wrapper API, a revision number is added e.g., 3.47.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.5.1" apply false
2+
id "com.android.library" version "8.7.1" 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.45.0-SNAPSHOT
19+
VERSION_NAME=3.47.0-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.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-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.29.0"
6+
id "com.vanniktech.maven.publish" version "0.30.0"
77
}
88

99
android {
1010
buildToolsVersion = "35.0.0"
11-
ndkVersion "26.3.11579264"
11+
ndkVersion "27.2.12479018"
1212

13-
compileSdk 34
13+
compileSdk 35
1414

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

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

5050
dependencies {
51-
api("androidx.core:core:1.13.1")
51+
api("androidx.core:core:1.15.0")
5252
api("androidx.sqlite:sqlite:2.4.0")
5353
testImplementation("junit:junit:4.13.2")
5454
androidTestImplementation("androidx.test:core:1.6.1")
55-
androidTestImplementation("androidx.test:runner:1.6.1")
55+
androidTestImplementation("androidx.test:runner:1.6.2")
5656
androidTestImplementation("androidx.test:rules:1.6.1")
5757
androidTestImplementation("androidx.test.ext:junit:1.2.1")
5858
}
5959

6060
ext {
61-
sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3460000.zip"
61+
sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3470000.zip"
6262
}
6363

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

0 commit comments

Comments
 (0)