Skip to content

Commit 76761c8

Browse files
committed
Update version to 3.18.0
1 parent d415541 commit 76761c8

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.18.0
5+
6+
- [SQLite 3.18.0](https://sqlite.org/releaselog/3_18_0.html)
7+
- Fix conversion of strings larger than the available stack size (#35)
8+
49
## 3.17.0
510

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Android SQLite support library
1+
# Android SQLite support library
22

33
[![Build Status](https://travis-ci.org/requery/sqlite-android.svg?branch=master)](https://travis-ci.org/requery/sqlite-android)
44
[ ![Download](https://api.bintray.com/packages/requery/requery/sqlite-android/images/download.svg) ](https://bintray.com/requery/requery/sqlite-android/_latestVersion)
@@ -45,7 +45,7 @@ Usage
4545

4646
```gradle
4747
dependencies {
48-
compile 'io.requery:sqlite-android:3.17.0'
48+
compile 'io.requery:sqlite-android:3.18.0'
4949
}
5050
```
5151
Then change usages of `android.database.sqlite.SQLiteDatabase` to

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

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

5858
ext {
59-
sqliteDistributionUrl = 'https://sqlite.org/2017/sqlite-amalgamation-3170000.zip'
59+
sqliteDistributionUrl = 'https://sqlite.org/2017/sqlite-amalgamation-3180000.zip'
6060
pomXml = {
6161
resolveStrategy = Closure.DELEGATE_FIRST
6262
name project.name

0 commit comments

Comments
 (0)