File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
125126License
126127-------
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ apply plugin: 'com.jfrog.bintray'
1010import de.undercouch.gradle.tasks.download.Download
1111
1212group = ' io.requery'
13- version = ' 3.12.0 '
13+ version = ' 3.12.1 '
1414description = ' Android SQLite compatibility library'
1515
1616gradle. projectsEvaluated {
@@ -53,7 +53,7 @@ dependencies {
5353}
5454
5555ext {
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
You can’t perform that action at this time.
0 commit comments