Skip to content

Commit 08700c7

Browse files
committed
Update SQLite to v3.51.2 and Gradle to v9.4.0
1 parent 1e5275c commit 08700c7

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Change Log
22
==========
33

44
## 3.51.1
5+
- [SQLite 3.51.2](https://www.sqlite.org/releaselog/3_51_2.html)
56
- [SQLite 3.51.1](https://www.sqlite.org/releaselog/3_51_1.html)
67
- [SQLite 3.51.0](https://www.sqlite.org/releaselog/3_51_0.html)
78

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
![Build Status](https://github.com/requery/sqlite-android/actions/workflows/ci.yml/badge.svg)
44
[![Download](https://jitpack.io/v/requery/sqlite-android.svg)](https://jitpack.io/#requery/sqlite-android)
55

6-
This is an Android specific distribution of the latest versions of SQLite.
7-
It contains the latest SQLite version and the Android specific database APIs
6+
This is an Android-specific distribution of the latest versions of SQLite.
7+
It contains the latest SQLite version and the Android-specific database APIs
88
derived from AOSP packaged as an AAR library distributed on jitpack.
99

1010
Why?
@@ -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.51.1'
54+
implementation 'com.github.requery:sqlite-android:3.51.2'
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.51.1-X, where X is the revision number.
118+
wrapper API, a revision number is added, e.g., 3.51.2-X, where X is the revision number.
119119

120120
Acknowledgements
121121
----------------
@@ -153,7 +153,7 @@ Changes
153153
License
154154
-------
155155

156-
Copyright (C) 2017-2025 requery.io
156+
Copyright (C) 2017-2026 requery.io
157157
Copyright (C) 2005-2012 The Android Open Source Project
158158

159159
Licensed under the Apache License, Version 2.0 (the "License");

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugins {
22
id "com.android.library" version "8.13.2" apply false
3-
id "de.undercouch.download" version "5.6.0" apply false
3+
id "de.undercouch.download" version "5.7.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.51.1-SNAPSHOT
19+
VERSION_NAME=3.51.2-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-9.3.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "de.undercouch.download"
33
id "com.android.library"
4-
id "com.vanniktech.maven.publish" version "0.35.0"
4+
id "com.vanniktech.maven.publish" version "0.36.0"
55
}
66

77
android {
@@ -15,7 +15,7 @@ android {
1515
namespace "io.requery.android.sqlite"
1616

1717
defaultConfig {
18-
minSdkVersion 23
18+
minSdkVersion 21
1919
versionName VERSION_NAME
2020

2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -58,7 +58,7 @@ dependencies {
5858
}
5959

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

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

0 commit comments

Comments
 (0)