Skip to content

Commit

Permalink
Update SQLite to v3.40.0 (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk authored Jan 19, 2023
1 parent 801e3ea commit 276ea5a
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
----------------
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
VERSION_NAME=3.40.1-SNAPSHOT
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
21 changes: 11 additions & 10 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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) {
Expand Down
3 changes: 1 addition & 2 deletions sqlite-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.requery.android.sqlite"/>
<manifest />

0 comments on commit 276ea5a

Please sign in to comment.