Skip to content

Commit

Permalink
Update version to 3.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Apr 2, 2017
1 parent d415541 commit 76761c8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

## 3.18.0

- [SQLite 3.18.0](https://sqlite.org/releaselog/3_18_0.html)
- Fix conversion of strings larger than the available stack size (#35)

## 3.17.0

- [SQLite 3.17.0](https://sqlite.org/releaselog/3_17_0.html)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Android SQLite support library
# Android SQLite support library

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

```gradle
dependencies {
compile 'io.requery:sqlite-android:3.17.0'
compile 'io.requery:sqlite-android:3.18.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.17.0'
version = '3.18.0'
description = 'Android SQLite compatibility library'

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

ext {
sqliteDistributionUrl = 'https://sqlite.org/2017/sqlite-amalgamation-3170000.zip'
sqliteDistributionUrl = 'https://sqlite.org/2017/sqlite-amalgamation-3180000.zip'
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit 76761c8

Please sign in to comment.