Skip to content

Commit 276ea5a

Browse files
authored
Update SQLite to v3.40.0 (#170)
1 parent 801e3ea commit 276ea5a

File tree

7 files changed

+21
-17
lines changed

7 files changed

+21
-17
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.40.1
5+
- [SQLite 3.40.1](https://www.sqlite.org/releaselog/3_40_1.html)
6+
- [SQLite 3.40.0](https://www.sqlite.org/releaselog/3_40_0.html)
7+
-
48
## 3.39.2
59
- [SQLite 3.39.2](https://www.sqlite.org/releaselog/3_39_2.html)
610
- [SQLite 3.39.1](https://www.sqlite.org/releaselog/3_39_1.html)

README.md

Lines changed: 2 additions & 2 deletions
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.2'
52+
implementation 'com.github.requery:sqlite-android:3.40.1'
5353
}
5454
```
5555
Then change usages of `android.database.sqlite.SQLiteDatabase` to
@@ -113,7 +113,7 @@ Versioning
113113
----------
114114

115115
The library is versioned after the version of SQLite it contains. For changes specific to just the
116-
wrapper API a revision number is added e.g. 3.12.0-X, where X is the revision number.
116+
wrapper API a revision number is added e.g. 3.40.1-X, where X is the revision number.
117117

118118
Acknowledgements
119119
----------------

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 '7.3.1' apply false
3-
id 'de.undercouch.download' version '5.1.0' apply false
3+
id 'de.undercouch.download' version '5.3.0' apply false
44
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ POM_DEVELOPER_ID=TODO
2222
POM_DEVELOPER_NAME=TODO
2323
POM_DEVELOPER_URL=TODO
2424
POM_INCEPTION_YEAR=TODO
25-
VERSION_NAME=3.40.0-SNAPSHOT
25+
VERSION_NAME=3.40.1-SNAPSHOT
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.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

sqlite-android/build.gradle

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,18 @@ 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.22.0'
6+
id 'com.vanniktech.maven.publish' version '0.23.0'
77
}
88

99
android {
10-
compileSdkVersion 32
11-
buildToolsVersion "33.0.0"
12-
ndkVersion '25.0.8775105'
10+
compileSdkVersion 33
11+
buildToolsVersion "33.0.1"
12+
ndkVersion '25.1.8937393'
1313

1414
defaultConfig {
1515
minSdkVersion 14
1616
versionName VERSION_NAME
17+
namespace "io.requery.android.sqlite"
1718
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1819
consumerProguardFiles 'proguard-rules.pro'
1920
ndk {
@@ -43,15 +44,15 @@ android {
4344

4445
dependencies {
4546
api 'androidx.sqlite:sqlite:2.2.0'
46-
api 'androidx.core:core:1.8.0'
47-
androidTestImplementation 'androidx.test:core:1.4.0'
48-
androidTestImplementation 'androidx.test:runner:1.4.0'
49-
androidTestImplementation 'androidx.test:rules:1.4.0'
50-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
47+
api 'androidx.core:core:1.9.0'
48+
androidTestImplementation 'androidx.test:core:1.5.0'
49+
androidTestImplementation 'androidx.test:runner:1.5.1'
50+
androidTestImplementation 'androidx.test:rules:1.5.0'
51+
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
5152
}
5253

5354
ext {
54-
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390200.zip'
55+
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3400100.zip'
5556
}
5657

5758
task downloadSqlite(type: Download) {
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="io.requery.android.sqlite"/>
1+
<manifest />

0 commit comments

Comments
 (0)