Skip to content

Commit

Permalink
Update SQLite to version 3.39.2 (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk authored Aug 1, 2022
1 parent 02b55ee commit 8a2369f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 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.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)

## 3.39.0
- [SQLite 3.39.0](https://www.sqlite.org/releaselog/3_39_0.html)
-
Expand Down
2 changes: 1 addition & 1 deletion 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.0'
implementation 'com.github.requery:sqlite-android:3.39.2'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
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.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ plugins {
}

group = 'io.requery'
version = '3.39.0'
version = '3.39.2'
description = 'Android SQLite compatibility library'

android {
compileSdkVersion 32
buildToolsVersion "32.0.0"
ndkVersion '24.0.8215888'
buildToolsVersion "33.0.0"
ndkVersion '25.0.8775105'

defaultConfig {
minSdkVersion 14
Expand Down Expand Up @@ -57,7 +57,7 @@ dependencies {
}

ext {
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390000.zip'
sqliteDistributionUrl = 'https://www.sqlite.org/2022/sqlite-amalgamation-3390200.zip'
}

task downloadSqlite(type: Download) {
Expand Down

0 comments on commit 8a2369f

Please sign in to comment.