Skip to content

Commit f817438

Browse files
committed
Update to 3.12.1, add changelog
1 parent 3ee1089 commit f817438

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Change Log
2+
==========
3+
4+
## 3.12.1
5+
6+
- [SQLite 3.12.1](https://www.sqlite.org/releaselog/3_12_1.html)
7+
- Support runtime extension loading
8+
- Support custom functions
9+
- `beginTransactionDeferred`/`beginTransactionWithListenerDeferred` added
10+
- `CancellationSignal` dependency changed to support-v4 from app-compat
11+
- Sources included in artifacts
12+
13+
## 3.12.0
14+
15+
- Initial release with SQLite 3.12.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ Changes
121121
- Fix removed members in AbstractWindowCursor
122122
- Made the AOSP code (mostly) warning free but still mergable from source
123123
- Deprecated classes/methods removed
124+
- Loadable extension support
124125

125126
License
126127
-------

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.12.0'
13+
version = '3.12.1'
1414
description = 'Android SQLite compatibility library'
1515

1616
gradle.projectsEvaluated {
@@ -53,7 +53,7 @@ dependencies {
5353
}
5454

5555
ext {
56-
sqliteDistributionUrl = 'http://www.sqlite.org/2016/sqlite-amalgamation-3120000.zip'
56+
sqliteDistributionUrl = 'http://www.sqlite.org/2016/sqlite-amalgamation-3120100.zip'
5757
pomXml = {
5858
resolveStrategy = Closure.DELEGATE_FIRST
5959
name project.name

0 commit comments

Comments
 (0)