Skip to content

Commit

Permalink
Update version to 3.24.0 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
technoir42 authored and npurushe committed Jun 10, 2018
1 parent 25db41f commit a0504ee
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

## 3.24.0

- [SQLite 3.24.0](http://sqlite.org/releaselog/3_24_0.html)

## 3.23.1

- [SQLite 3.23.1](http://sqlite.org/releaselog/3_23_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.23.1'
compile 'io.requery:sqlite-android:3.24.0'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
Expand All @@ -11,7 +11,7 @@ buildscript {

allprojects {
repositories {
jcenter()
google()
jcenter()
}
}
3 changes: 2 additions & 1 deletion sqlite-android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/src/main/jni/sqlite/sqlite3.h
/src/main/jni/sqlite/sqlite3.c
/src/main/jni/sqlite.zip
/src/main/obj
/src/main/obj
.externalNativeBuild/
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.23.1'
version = '3.24.0'
description = 'Android SQLite compatibility library'

android {
Expand Down Expand Up @@ -54,7 +54,7 @@ publish.dependsOn "assembleRelease"
bintrayUpload.dependsOn "assembleRelease"

ext {
sqliteDistributionUrl = 'http://sqlite.org/2018/sqlite-amalgamation-3230100.zip'
sqliteDistributionUrl = 'http://sqlite.org/2018/sqlite-amalgamation-3240000.zip'
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit a0504ee

Please sign in to comment.