Skip to content

Commit

Permalink
Update version to 3.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Sep 14, 2016
1 parent 8b7081f commit f8edf88
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.14.2

- [SQLite 3.14.2](https://www.sqlite.org/releaselog/3_14_2.html)
- Removed code that disabled WAL when executing a ATTACH statement

## 3.14.1

- [SQLite 3.14.1](https://www.sqlite.org/releaselog/3_14_1.html)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Usage

```gradle
dependencies {
compile 'io.requery:sqlite-android:3.14.1'
compile 'io.requery:sqlite-android:3.14.2'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
6 changes: 3 additions & 3 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.14.1'
version = '3.14.2'
description = 'Android SQLite compatibility library'

gradle.projectsEvaluated {
Expand Down Expand Up @@ -47,7 +47,7 @@ android {
}

dependencies {
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:support-v4:24.2.0'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
}
Expand All @@ -56,7 +56,7 @@ publish.dependsOn assembleRelease
bintrayUpload.dependsOn assembleRelease

ext {
sqliteDistributionUrl = 'https://www.sqlite.org/2016/sqlite-amalgamation-3140100.zip'
sqliteDistributionUrl = 'https://www.sqlite.org/2016/sqlite-amalgamation-3140200.zip'
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit f8edf88

Please sign in to comment.