Skip to content

Commit

Permalink
Bump SQLite to 3.48.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk committed Jan 15, 2025
1 parent a7da05d commit b90cc2a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Change Log
==========

## 3.47.0
## 3.48.0
- [SQLite 3.48.0](https://www.sqlite.org/releaselog/3_48_0.html)
- [SQLite 3.47.2](https://www.sqlite.org/releaselog/3_47_2.html)
- [SQLite 3.47.1](https://www.sqlite.org/releaselog/3_47_2.html)
- [SQLite 3.47.0](https://www.sqlite.org/releaselog/3_47_0.html)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
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.47.2'
implementation 'com.github.requery:sqlite-android:3.48.0'
}
```
Then change usages of `android.database.sqlite.SQLiteDatabase` to
Expand Down Expand Up @@ -153,7 +153,7 @@ Changes
License
-------

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

Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plugins {
id "com.android.library" version "8.7.3" apply false
id "com.android.library" version "8.8.0" apply false
id "de.undercouch.download" version "5.6.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.47.2-SNAPSHOT
VERSION_NAME=3.48.0-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-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-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
Expand Up @@ -7,7 +7,7 @@ plugins {
}

android {
buildToolsVersion = "35.0.0"
buildToolsVersion = "35.0.1"
ndkVersion "27.2.12479018"

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

ext {
sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3470200.zip"
sqliteDistributionUrl = "https://www.sqlite.org/2025/sqlite-amalgamation-3480000.zip"
}

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

0 comments on commit b90cc2a

Please sign in to comment.