Skip to content

Commit

Permalink
Update SQLite to version 3.35.5 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk authored Apr 26, 2021
1 parent 0b4d550 commit f63a678
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log
==========

## 3.35.5
- [SQLite 3.35.5](http://sqlite.org/releaselog/3_35_5.html)

## 3.35.4
- [SQLite 3.35.4](http://sqlite.org/releaselog/3_35_4.html)
- [SQLite 3.35.3](http://sqlite.org/releaselog/3_35_3.html)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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)
[![Download](https://jitpack.io/v/requery/sqlite-android.svg)](https://jitpack.io/#requery/sqlite-android)

This is an Android specific distribution of the latest versions of SQLite. It contains the latest
SQLite version and the Android specific database APIs derived from AOSP packaged as an AAR
Expand Down Expand Up @@ -63,7 +63,7 @@ Then add the sqlite-android artifact from this repository as a dependency:

```gradle
dependencies {
implementation 'com.github.requery:sqlite-android:3.35.4'
implementation 'com.github.requery:sqlite-android:3.35.5'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down Expand Up @@ -154,7 +154,7 @@ Changes
- Migrate to gradle build
- buildscript dynamically fetches and builds the latest sqlite source from sqlite.org
- Added consumer proguard rules
- Use support-v4 version of `CancellationSignal`
- Use androidx-core version of `CancellationSignal`
- Fix bug in `SQLiteOpenHelper.getDatabaseLocked()` wrong path to `openOrCreateDatabase`
- Fix removed members in AbstractWindowCursor
- Made the AOSP code (mostly) warning free but still mergable from source
Expand All @@ -164,7 +164,7 @@ Changes
License
-------

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

Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
classpath 'org.apache.httpcomponents:httpclient:4.5.13'
}
}
Expand All @@ -15,6 +13,5 @@ allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
4 changes: 2 additions & 2 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'maven-publish'
apply plugin: 'de.undercouch.download'

group = 'io.requery'
version = '3.35.4'
version = '3.35.5'
description = 'Android SQLite compatibility library'

android {
Expand Down Expand Up @@ -58,7 +58,7 @@ dependencies {
}

ext {
sqliteDistributionUrl = 'https://sqlite.org/2021/sqlite-amalgamation-3350400.zip'
sqliteDistributionUrl = 'https://sqlite.org/2021/sqlite-amalgamation-3350500.zip'
pomXml = {
resolveStrategy = DELEGATE_FIRST
name project.name
Expand Down

0 comments on commit f63a678

Please sign in to comment.