Skip to content

Commit

Permalink
Update version to 3.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Nov 2, 2017
1 parent 534828d commit 8689014
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

## 3.21.0

- [SQLite 3.21.0](https://sqlite.org/releaselog/3_21_0.html)
- Support SupportSQLiteDatabase interfaces provided in `android.arch.persistence:db`
- Support MIPS abi
- Fix local reference overflow when using custom functions

## 3.20.1

- [SQLite 3.20.1](https://sqlite.org/releaselog/3_20_1.html)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ The native library is built for the following CPU architectures:
- `arm64-v8a`
- `x86`
- `x86_64`
- `mips`

However you may not want to include all binaries in your apk. You can exclude certain variants by
using `packagingOptions`:
Expand All @@ -88,11 +89,12 @@ android {
exclude 'lib/arm64-v8a/libsqlite3x.so'
exclude 'lib/x86/libsqlite3x.so'
exclude 'lib/x86_64/libsqlite3x.so'
exclude 'lib/mips/libsqlite3x.so'
}
}
```

The size of the artifacts with only the armeabi-v7a binary is **~500kb**. In general you can use
The size of the artifacts with only the armeabi-v7a binary is **~600kb**. In general you can use
armeabi-v7a on the majority of Android devices including Intel Atom which provides a native
translation layer, however performance under the translation layer is worse than using the x86
binary.
Expand Down Expand Up @@ -143,7 +145,7 @@ Changes
License
-------

Copyright (C) 2016 requery.io
Copyright (C) 2017 requery.io
Copyright (C) 2005-2012 The Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License");
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.20.1'
version = '3.21.0'
description = 'Android SQLite compatibility library'

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

ext {
sqliteDistributionUrl = 'http://sqlite.org/2017/sqlite-amalgamation-3200100.zip'
sqliteDistributionUrl = 'http://sqlite.org/2017/sqlite-amalgamation-3210000.zip'
pomXml = {
resolveStrategy = Closure.DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit 8689014

Please sign in to comment.