Skip to content

Commit 11e2d93

Browse files
committed
Update version to 3.23.1
1 parent e7d7a4e commit 11e2d93

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
## 3.23.1
5+
6+
- [SQLite 3.23.1](http://sqlite.org/releaselog/3_23_1.html)
7+
- Add new enhanced custom function interfaces and methods
8+
49
## 3.22.0
510

611
- [SQLite 3.22.0](https://sqlite.org/releaselog/3_22_0.html)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Usage
4545

4646
```gradle
4747
dependencies {
48-
compile 'io.requery:sqlite-android:3.22.0'
48+
compile 'io.requery:sqlite-android:3.23.1'
4949
}
5050
```
5151
Then change usages of `android.database.sqlite.SQLiteDatabase` to
@@ -102,7 +102,7 @@ binary.
102102
Requirements
103103
------------
104104

105-
The min SDK level is API level 9 (Gingerbread).
105+
The min SDK level is API level 14 (Ice Cream Sandwich).
106106

107107
Versioning
108108
----------

sqlite-android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apply plugin: 'com.jfrog.bintray'
1010
import de.undercouch.gradle.tasks.download.Download
1111

1212
group = 'io.requery'
13-
version = '3.22.0'
13+
version = '3.23.1'
1414
description = 'Android SQLite compatibility library'
1515

1616
gradle.projectsEvaluated {
@@ -55,7 +55,7 @@ publish.dependsOn "assembleRelease"
5555
bintrayUpload.dependsOn "assembleRelease"
5656

5757
ext {
58-
sqliteDistributionUrl = 'http://sqlite.org/2018/sqlite-amalgamation-3220000.zip'
58+
sqliteDistributionUrl = 'http://sqlite.org/2018/sqlite-amalgamation-3230100.zip'
5959
pomXml = {
6060
resolveStrategy = Closure.DELEGATE_FIRST
6161
name project.name

0 commit comments

Comments
 (0)