Skip to content
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

## 3.51.3
- [SQLite 3.51.3](https://www.sqlite.org/releaselog/3_51_3.html)
- [SQLite 3.51.2](https://www.sqlite.org/releaselog/3_51_2.html)
- [SQLite 3.51.1](https://www.sqlite.org/releaselog/3_51_1.html)
- [SQLite 3.51.0](https://www.sqlite.org/releaselog/3_51_0.html)

## 3.50.4
- [SQLite 3.50.4](https://www.sqlite.org/releaselog/3_50_4.html)
- [SQLite 3.50.3](https://www.sqlite.org/releaselog/3_50_3.html)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
![Build Status](https://github.com/requery/sqlite-android/actions/workflows/ci.yml/badge.svg)
[![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
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 library distributed on jitpack.

Why?
Expand Down Expand Up @@ -51,7 +51,7 @@ Then add the sqlite-android artifact from this repository as a dependency:

```gradle
dependencies {
implementation 'com.github.requery:sqlite-android:3.50.4'
implementation 'com.github.requery:sqlite-android:3.51.3'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down Expand Up @@ -115,7 +115,7 @@ Versioning
----------

The library is versioned after the version of SQLite it contains. For changes specific to just the
wrapper API, a revision number is added, e.g., 3.50.4-X, where X is the revision number.
wrapper API, a revision number is added, e.g., 3.51.3-X, where X is the revision number.

Acknowledgements
----------------
Expand Down Expand Up @@ -153,7 +153,7 @@ Changes
License
-------

Copyright (C) 2017-2025 requery.io
Copyright (C) 2017-2026 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 build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id "com.android.library" version "8.13.0" apply false
id "de.undercouch.download" version "5.6.0" apply false
id "com.android.library" version "8.13.2" apply false
id "de.undercouch.download" version "5.7.0" apply false
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
android.useAndroidX=true
#
GROUP=io.requery
VERSION_NAME=3.50.4-SNAPSHOT
VERSION_NAME=3.51.3-SNAPSHOT
#
POM_DEVELOPER_ID=TODO
POM_DEVELOPER_NAME=TODO
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "de.undercouch.download"
id "com.android.library"
id "com.vanniktech.maven.publish" version "0.34.0"
id "com.vanniktech.maven.publish" version "0.36.0"
}

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

ext {
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3500400.zip"
sqliteDistributionUrl = "https://www.sqlite.org/2026/sqlite-amalgamation-3510300.zip"
}

tasks.register("downloadSqlite", Download) {
Expand Down
Loading