Skip to content

Commit

Permalink
Update SQLite to version 3.35.1 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B authored Mar 19, 2021
1 parent 468e648 commit 25c5d9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 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.35.1
- [SQLite 3.35.1](http://sqlite.org/releaselog/3_35_1.html)
- [SQLite 3.35.0](http://sqlite.org/releaselog/3_35_0.html)

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

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Use new SQLite features:
- **[Indexes on expressions](https://www.sqlite.org/expridx.html)**
- **[Full Text Search 5](https://www.sqlite.org/fts5.html)**
- **[Generated Columns](https://www.sqlite.org/gencol.html)**
- **[DROP COLUMN support](https://www.sqlite.org/lang_altertable.html#altertabdropcol)**

Performance
-----------
Expand All @@ -47,7 +48,7 @@ Usage

```gradle
dependencies {
implementation 'io.requery:sqlite-android:3.34.1'
implementation 'io.requery:sqlite-android:3.35.1'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
2 changes: 1 addition & 1 deletion sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
}

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

0 comments on commit 25c5d9e

Please sign in to comment.