Skip to content

Commit

Permalink
Update to v3.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SteinerOk committed Oct 31, 2024
1 parent fb5c226 commit 9e342ef
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
Change Log
==========

## 3.46.0
## 3.47.0
- [SQLite 3.47.0](https://www.sqlite.org/releaselog/3_47_0.html)
- [SQLite 3.46.1](https://www.sqlite.org/releaselog/3_46_1.html)
- [SQLite 3.46.0](https://www.sqlite.org/releaselog/3_46_0.html)
- [SQLite 3.45.3](https://www.sqlite.org/releaselog/3_45_3.html)
- [SQLite 3.45.2](https://www.sqlite.org/releaselog/3_45_2.html)
- [SQLite 3.45.1](https://www.sqlite.org/releaselog/3_45_2.html)
-

## 3.45.0
- [SQLite 3.45.0](https://www.sqlite.org/releaselog/3_45_0.html)
- [SQLite 3.44.2](https://www.sqlite.org/releaselog/3_44_2.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.46.0'
implementation 'com.github.requery:sqlite-android:3.47.0'
}
```
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.46.0-X, where X is the revision number.
wrapper API, a revision number is added e.g., 3.47.0-X, where X is the revision number.

Acknowledgements
----------------
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.5.1" apply false
id "com.android.library" version "8.7.1" 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.45.0-SNAPSHOT
VERSION_NAME=3.47.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.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
12 changes: 6 additions & 6 deletions sqlite-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import com.vanniktech.maven.publish.SonatypeHost
plugins {
id "de.undercouch.download"
id "com.android.library"
id "com.vanniktech.maven.publish" version "0.29.0"
id "com.vanniktech.maven.publish" version "0.30.0"
}

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

compileSdk 34
compileSdk 35

namespace "io.requery.android.sqlite"

Expand Down Expand Up @@ -48,17 +48,17 @@ android {
}

dependencies {
api("androidx.core:core:1.13.1")
api("androidx.core:core:1.15.0")
api("androidx.sqlite:sqlite:2.4.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test:core:1.6.1")
androidTestImplementation("androidx.test:runner:1.6.1")
androidTestImplementation("androidx.test:runner:1.6.2")
androidTestImplementation("androidx.test:rules:1.6.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
}

ext {
sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3460000.zip"
sqliteDistributionUrl = "https://www.sqlite.org/2024/sqlite-amalgamation-3470000.zip"
}

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

0 comments on commit 9e342ef

Please sign in to comment.