diff --git a/integration_tests/flutter_libs/android/gradle/wrapper/gradle-wrapper.properties b/integration_tests/flutter_libs/android/gradle/wrapper/gradle-wrapper.properties index 562c5e44..02e5f581 100644 --- a/integration_tests/flutter_libs/android/gradle/wrapper/gradle-wrapper.properties +++ b/integration_tests/flutter_libs/android/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip diff --git a/sqlite3/assets/wasm/CMakeLists.txt b/sqlite3/assets/wasm/CMakeLists.txt index 5d013ab5..d53aae3e 100644 --- a/sqlite3/assets/wasm/CMakeLists.txt +++ b/sqlite3/assets/wasm/CMakeLists.txt @@ -9,13 +9,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0") # We can't really ask users to use a cmake that recent, so there's this if here. FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) else() FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz ) endif() diff --git a/sqlite3_flutter_libs/CHANGELOG.md b/sqlite3_flutter_libs/CHANGELOG.md index 4958afc7..2d814179 100644 --- a/sqlite3_flutter_libs/CHANGELOG.md +++ b/sqlite3_flutter_libs/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.13 + +- Upgrade sqlite to version `3.41.0`. + ## 0.5.12 - Upgrade sqlite to version `3.40.0`. diff --git a/sqlite3_flutter_libs/android/build.gradle b/sqlite3_flutter_libs/android/build.gradle index 473a0ca7..beb75848 100644 --- a/sqlite3_flutter_libs/android/build.gradle +++ b/sqlite3_flutter_libs/android/build.gradle @@ -27,5 +27,5 @@ android { } dependencies { - implementation 'eu.simonbinder:sqlite3-native-library:3.40.0' + implementation 'eu.simonbinder:sqlite3-native-library:3.41.0' } diff --git a/sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec b/sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec index 0274fa5b..f0726894 100644 --- a/sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec +++ b/sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec @@ -17,7 +17,7 @@ A new flutter plugin project. s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' - s.dependency 'sqlite3', '~> 3.40.0' + s.dependency 'sqlite3', '~> 3.41.0' s.dependency 'sqlite3/fts5' s.dependency 'sqlite3/perf-threadsafe' s.dependency 'sqlite3/rtree' diff --git a/sqlite3_flutter_libs/linux/CMakeLists.txt b/sqlite3_flutter_libs/linux/CMakeLists.txt index 22dddc4a..82108795 100644 --- a/sqlite3_flutter_libs/linux/CMakeLists.txt +++ b/sqlite3_flutter_libs/linux/CMakeLists.txt @@ -13,13 +13,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0") # We can't really ask users to use a cmake that recent, so there's this if here. FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) else() FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz ) endif() FetchContent_MakeAvailable(sqlite3) diff --git a/sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec b/sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec index 6300d2d0..0163df62 100644 --- a/sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec +++ b/sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.public_header_files = 'Classes/**/*.h' s.dependency 'FlutterMacOS' - s.dependency 'sqlite3', '~> 3.40.0' + s.dependency 'sqlite3', '~> 3.41.0' s.dependency 'sqlite3/fts5' s.dependency 'sqlite3/perf-threadsafe' s.dependency 'sqlite3/rtree' diff --git a/sqlite3_flutter_libs/pubspec.yaml b/sqlite3_flutter_libs/pubspec.yaml index 056de773..cff7cadf 100644 --- a/sqlite3_flutter_libs/pubspec.yaml +++ b/sqlite3_flutter_libs/pubspec.yaml @@ -1,6 +1,6 @@ name: sqlite3_flutter_libs description: Flutter plugin to include native sqlite3 libraries with your app -version: 0.5.12 +version: 0.5.13 homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs issue_tracker: https://github.com/simolus3/sqlite3.dart/issues diff --git a/sqlite3_flutter_libs/windows/CMakeLists.txt b/sqlite3_flutter_libs/windows/CMakeLists.txt index 7ed4e546..ad826461 100644 --- a/sqlite3_flutter_libs/windows/CMakeLists.txt +++ b/sqlite3_flutter_libs/windows/CMakeLists.txt @@ -29,13 +29,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0") # We can't really ask users to use a cmake that recent, so there's this if here. FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) else() FetchContent_Declare( sqlite3 - URL https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz + URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz ) endif() FetchContent_MakeAvailable(sqlite3)