Skip to content

Commit 8a2369f

Browse files
authored
Update SQLite to version 3.39.2 (#164)
1 parent 02b55ee commit 8a2369f

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
==========
33

4+
## 3.39.2
5+
- [SQLite 3.39.2](https://www.sqlite.org/releaselog/3_39_2.html)
6+
- [SQLite 3.39.1](https://www.sqlite.org/releaselog/3_39_1.html)
7+
48
## 3.39.0
59
- [SQLite 3.39.0](https://www.sqlite.org/releaselog/3_39_0.html)
610
-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Then add the sqlite-android artifact from this repository as a dependency:
4949

5050
```gradle
5151
dependencies {
52-
implementation 'com.github.requery:sqlite-android:3.39.0'
52+
implementation 'com.github.requery:sqlite-android:3.39.2'
5353
}
5454
```
5555
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ plugins {
55
}
66

77
group = 'io.requery'
8-
version = '3.39.0'
8+
version = '3.39.2'
99
description = 'Android SQLite compatibility library'
1010

1111
android {
1212
compileSdkVersion 32
13-
buildToolsVersion "32.0.0"
14-
ndkVersion '24.0.8215888'
13+
buildToolsVersion "33.0.0"
14+
ndkVersion '25.0.8775105'
1515

1616
defaultConfig {
1717
minSdkVersion 14
@@ -57,7 +57,7 @@ dependencies {
5757
}
5858

5959
ext {
60-
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390000.zip'
60+
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390200.zip'
6161
}
6262

6363
task downloadSqlite(type: Download) {

0 commit comments

Comments
 (0)