diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8137e134..d37f06b6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
Change Log
==========
+## 3.40.1
+- [SQLite 3.40.1](https://www.sqlite.org/releaselog/3_40_1.html)
+- [SQLite 3.40.0](https://www.sqlite.org/releaselog/3_40_0.html)
+-
## 3.39.2
- [SQLite 3.39.2](https://www.sqlite.org/releaselog/3_39_2.html)
- [SQLite 3.39.1](https://www.sqlite.org/releaselog/3_39_1.html)
diff --git a/README.md b/README.md
index 0a39e5aa..81a06898 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ Then add the sqlite-android artifact from this repository as a dependency:
```gradle
dependencies {
- implementation 'com.github.requery:sqlite-android:3.39.2'
+ implementation 'com.github.requery:sqlite-android:3.40.1'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
@@ -113,7 +113,7 @@ Versioning
----------
The library is versioned after the version of SQLite it contains. For changes specific to just the
-wrapper API a revision number is added e.g. 3.12.0-X, where X is the revision number.
+wrapper API a revision number is added e.g. 3.40.1-X, where X is the revision number.
Acknowledgements
----------------
diff --git a/build.gradle b/build.gradle
index 616d42ef..62b1c001 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,4 @@
plugins {
id 'com.android.library' version '7.3.1' apply false
- id 'de.undercouch.download' version '5.1.0' apply false
+ id 'de.undercouch.download' version '5.3.0' apply false
}
diff --git a/gradle.properties b/gradle.properties
index d18e8161..fb30adeb 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -22,4 +22,4 @@ POM_DEVELOPER_ID=TODO
POM_DEVELOPER_NAME=TODO
POM_DEVELOPER_URL=TODO
POM_INCEPTION_YEAR=TODO
-VERSION_NAME=3.40.0-SNAPSHOT
\ No newline at end of file
+VERSION_NAME=3.40.1-SNAPSHOT
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index ae04661e..070cb702 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/sqlite-android/build.gradle b/sqlite-android/build.gradle
index 772e0adb..2f6dd641 100644
--- a/sqlite-android/build.gradle
+++ b/sqlite-android/build.gradle
@@ -3,17 +3,18 @@ import com.vanniktech.maven.publish.SonatypeHost
plugins {
id 'de.undercouch.download'
id 'com.android.library'
- id 'com.vanniktech.maven.publish' version '0.22.0'
+ id 'com.vanniktech.maven.publish' version '0.23.0'
}
android {
- compileSdkVersion 32
- buildToolsVersion "33.0.0"
- ndkVersion '25.0.8775105'
+ compileSdkVersion 33
+ buildToolsVersion "33.0.1"
+ ndkVersion '25.1.8937393'
defaultConfig {
minSdkVersion 14
versionName VERSION_NAME
+ namespace "io.requery.android.sqlite"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
consumerProguardFiles 'proguard-rules.pro'
ndk {
@@ -43,15 +44,15 @@ android {
dependencies {
api 'androidx.sqlite:sqlite:2.2.0'
- api 'androidx.core:core:1.8.0'
- androidTestImplementation 'androidx.test:core:1.4.0'
- androidTestImplementation 'androidx.test:runner:1.4.0'
- androidTestImplementation 'androidx.test:rules:1.4.0'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
+ api 'androidx.core:core:1.9.0'
+ androidTestImplementation 'androidx.test:core:1.5.0'
+ androidTestImplementation 'androidx.test:runner:1.5.1'
+ androidTestImplementation 'androidx.test:rules:1.5.0'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.4'
}
ext {
- sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390200.zip'
+ sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3400100.zip'
}
task downloadSqlite(type: Download) {
diff --git a/sqlite-android/src/main/AndroidManifest.xml b/sqlite-android/src/main/AndroidManifest.xml
index 795975fc..cc947c56 100644
--- a/sqlite-android/src/main/AndroidManifest.xml
+++ b/sqlite-android/src/main/AndroidManifest.xml
@@ -1,2 +1 @@
-
+