Skip to content

Commit

Permalink
Update SQLite to version 3.36.0 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk authored Jun 23, 2021
1 parent f63a678 commit 9626fa3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 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.36.0
- [SQLite 3.36.0](https://sqlite.org/releaselog/3_36_0.html)

## 3.35.5
- [SQLite 3.35.5](http://sqlite.org/releaselog/3_35_5.html)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Then add the sqlite-android artifact from this repository as a dependency:

```gradle
dependencies {
implementation 'com.github.requery:sqlite-android:3.35.5'
implementation 'com.github.requery:sqlite-android:3.36.0'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
6 changes: 3 additions & 3 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'maven-publish'
apply plugin: 'de.undercouch.download'

group = 'io.requery'
version = '3.35.5'
version = '3.36.0'
description = 'Android SQLite compatibility library'

android {
Expand Down Expand Up @@ -50,15 +50,15 @@ android {

dependencies {
api 'androidx.sqlite:sqlite:2.1.0'
api 'androidx.core:core:1.3.2'
api 'androidx.core:core:1.5.0'
androidTestImplementation 'androidx.test:core:1.3.0'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
}

ext {
sqliteDistributionUrl = 'https://sqlite.org/2021/sqlite-amalgamation-3350500.zip'
sqliteDistributionUrl = 'https://sqlite.org/2021/sqlite-amalgamation-3360000.zip'
pomXml = {
resolveStrategy = DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit 9626fa3

Please sign in to comment.