From b58f8a65edf6f2d056c2c532f101523cc792d02a Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Sun, 15 Dec 2024 21:11:21 +0100 Subject: [PATCH] Update sqlite to 3.47.2 --- sqlite3/assets/wasm/CMakeLists.txt | 2 +- sqlite3_flutter_libs/CHANGELOG.md | 4 ++++ sqlite3_flutter_libs/android/build.gradle | 2 +- sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec | 2 +- .../darwin/sqlite3_flutter_libs/Package.swift | 2 +- sqlite3_flutter_libs/linux/CMakeLists.txt | 4 ++-- sqlite3_flutter_libs/pubspec.yaml | 2 +- sqlite3_flutter_libs/windows/CMakeLists.txt | 4 ++-- 8 files changed, 13 insertions(+), 9 deletions(-) diff --git a/sqlite3/assets/wasm/CMakeLists.txt b/sqlite3/assets/wasm/CMakeLists.txt index 2a90e5e6..71f5a747 100644 --- a/sqlite3/assets/wasm/CMakeLists.txt +++ b/sqlite3/assets/wasm/CMakeLists.txt @@ -12,7 +12,7 @@ include(FetchContent) FetchContent_Declare( sqlite3 # NOTE: When changing this, also update `test/wasm/sqlite3_test.dart` - URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz + URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) diff --git a/sqlite3_flutter_libs/CHANGELOG.md b/sqlite3_flutter_libs/CHANGELOG.md index 7d039ea9..34943a5d 100644 --- a/sqlite3_flutter_libs/CHANGELOG.md +++ b/sqlite3_flutter_libs/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.28 + +- Upgrade sqlite to version `3.37.2`. + ## 0.5.27 - Upgrade sqlite to version `3.47.1`. diff --git a/sqlite3_flutter_libs/android/build.gradle b/sqlite3_flutter_libs/android/build.gradle index 5d65e4b6..f8b2d8c5 100644 --- a/sqlite3_flutter_libs/android/build.gradle +++ b/sqlite3_flutter_libs/android/build.gradle @@ -32,5 +32,5 @@ android { } dependencies { - implementation 'eu.simonbinder:sqlite3-native-library:3.47.1' + implementation 'eu.simonbinder:sqlite3-native-library:3.47.2' } diff --git a/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec b/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec index 6d00909f..458c23b0 100644 --- a/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec +++ b/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec @@ -20,7 +20,7 @@ Pod::Spec.new do |s| } s.swift_version = '5.0' - s.dependency 'sqlite3', '~> 3.47.1' + s.dependency 'sqlite3', '~> 3.47.2' s.dependency 'sqlite3/fts5' s.dependency 'sqlite3/perf-threadsafe' s.dependency 'sqlite3/rtree' diff --git a/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift b/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift index c6a3dbfc..7f754825 100644 --- a/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift +++ b/sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift @@ -13,7 +13,7 @@ let package = Package( .library(name: "sqlite3-flutter-libs", type: .static, targets: ["sqlite3_flutter_libs"]) ], dependencies: [ - .package(url: "https://github.com/sbooth/CSQLite.git", exact: "3.47.1") + .package(url: "https://github.com/sbooth/CSQLite.git", exact: "3.47.2") ], targets: [ .target( diff --git a/sqlite3_flutter_libs/linux/CMakeLists.txt b/sqlite3_flutter_libs/linux/CMakeLists.txt index 19e19cf5..f3bcdbee 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/2024/sqlite-autoconf-3470100.tar.gz + URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) else() FetchContent_Declare( sqlite3 - URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz + URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz ) endif() FetchContent_MakeAvailable(sqlite3) diff --git a/sqlite3_flutter_libs/pubspec.yaml b/sqlite3_flutter_libs/pubspec.yaml index b5f109a7..f60eb5e7 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.27 +version: 0.5.28 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 e6be20a2..a618ceb3 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/2024/sqlite-autoconf-3470100.tar.gz + URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz DOWNLOAD_EXTRACT_TIMESTAMP NEW ) else() FetchContent_Declare( sqlite3 - URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz + URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz ) endif() FetchContent_MakeAvailable(sqlite3)