Skip to content

Commit

Permalink
Update version to 3.22.0 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterRager authored and npurushe committed Feb 2, 2018
1 parent 8ee97e8 commit ad55027
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

## 3.22.0

- [SQLite 3.22.0](https://sqlite.org/releaselog/3_22_0.html)
- Update `android.arch.persistence:db` dependency to `1.0.0`
- Improved error messaging on loading custom extensions
- Increase CursorWindow size to match AOSP
- Add custom extension and function loading to new SupportSQLiteDatabase API

## 3.21.0

- [SQLite 3.21.0](https://sqlite.org/releaselog/3_21_0.html)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Usage

```gradle
dependencies {
compile 'io.requery:sqlite-android:3.20.0'
compile 'io.requery:sqlite-android:3.22.0'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
4 changes: 2 additions & 2 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: 'com.jfrog.bintray'
import de.undercouch.gradle.tasks.download.Download

group = 'io.requery'
version = '3.21.0'
version = '3.22.0'
description = 'Android SQLite compatibility library'

gradle.projectsEvaluated {
Expand Down Expand Up @@ -55,7 +55,7 @@ publish.dependsOn "assembleRelease"
bintrayUpload.dependsOn "assembleRelease"

ext {
sqliteDistributionUrl = 'http://sqlite.org/2017/sqlite-amalgamation-3210000.zip'
sqliteDistributionUrl = 'http://sqlite.org/2018/sqlite-amalgamation-3220000.zip'
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit ad55027

Please sign in to comment.