Skip to content

Commit

Permalink
Update SQLite to v3.43.0 (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk authored Aug 29, 2023
1 parent 19a3213 commit 4fb4458
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log
==========

## 3.43.0
- [SQLite 3.43.0](https://www.sqlite.org/releaselog/3_43_0.html)

## 3.42.0
- [SQLite 3.42.0](https://www.sqlite.org/releaselog/3_42_0.html)
- [SQLite 3.41.2](https://www.sqlite.org/releaselog/3_41_2.html)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Why?
- **Up-to-date**

Even the latest version of Android is several versions behind the latest version of SQLite.
These versions do not have the bug fixes, performance improvements, or new features present in
These versions do not have bug fixes, performance improvements, or new features present in
current versions of SQLite. This problem is worse the older the version of the OS the device has.
Using this library, you can keep up to date with the latest versions of SQLite and provide a
consistent version across OS versions and devices.
Expand Down Expand Up @@ -51,7 +51,7 @@ Then add the sqlite-android artifact from this repository as a dependency:

```gradle
dependencies {
implementation 'com.github.requery:sqlite-android:3.42.0'
implementation 'com.github.requery:sqlite-android:3.43.0'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down Expand Up @@ -115,7 +115,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.42.0-X, where X is the revision number.
wrapper API, a revision number is added e.g. 3.43.0-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 "8.0.1" apply false
id "com.android.library" version "8.1.1" apply false
id "de.undercouch.download" version "5.4.0" apply false
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ POM_DEVELOPER_ID=TODO
POM_DEVELOPER_NAME=TODO
POM_DEVELOPER_URL=TODO
POM_INCEPTION_YEAR=TODO
VERSION_NAME=3.42.0-SNAPSHOT
VERSION_NAME=3.43.0-SNAPSHOT
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
12 changes: 6 additions & 6 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import com.vanniktech.maven.publish.SonatypeHost
plugins {
id "de.undercouch.download"
id "com.android.library"
id "com.vanniktech.maven.publish" version "0.25.2"
id "com.vanniktech.maven.publish" version "0.25.3"
}

android {
buildToolsVersion = "33.0.2"
buildToolsVersion = "34.0.0"
ndkVersion "25.2.9519653"

compileSdk 33
compileSdk 34

namespace "io.requery.android.sqlite"

Expand All @@ -36,8 +36,8 @@ android {
abortOnError false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

externalNativeBuild {
Expand All @@ -58,7 +58,7 @@ dependencies {
}

ext {
sqliteDistributionUrl = "https://www.sqlite.org/2023/sqlite-amalgamation-3420000.zip"
sqliteDistributionUrl = "https://www.sqlite.org/2023/sqlite-amalgamation-3430000.zip"
}

tasks.register("downloadSqlite", Download) {
Expand Down

0 comments on commit 4fb4458

Please sign in to comment.