Skip to content

Commit d4a56db

Browse files
committed
Update sqlite to 3.49.0
1 parent e8a7aad commit d4a56db

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

sqlite3/assets/wasm/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ include(FetchContent)
1212
FetchContent_Declare(
1313
sqlite3
1414
# NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`
15-
URL https://sqlite.org/2025/sqlite-autoconf-3480000.tar.gz
15+
URL https://sqlite.org/2025/sqlite-autoconf-3490000.tar.gz
1616
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1717
)
1818

1919
FetchContent_Declare(
2020
sqlite3mc
21-
URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.0.2/sqlite3mc-2.0.2-sqlite-3.48.0-amalgamation.zip
21+
URL https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v2.0.3/sqlite3mc-2.0.3-sqlite-3.49.0-amalgamation.zip
2222
DOWNLOAD_EXTRACT_TIMESTAMP NEW
2323
)
2424

sqlite3_flutter_libs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.30
2+
3+
- Upgrade sqlite to version `3.49.0`.
4+
15
## 0.5.29+1
26

37
- Android: Upgrade `compileSdkVersion` to `35`.

sqlite3_flutter_libs/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ android {
3232
}
3333

3434
dependencies {
35-
implementation 'eu.simonbinder:sqlite3-native-library:3.48.0+1'
35+
implementation 'eu.simonbinder:sqlite3-native-library:3.49.0'
3636
}

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
2020
}
2121
s.swift_version = '5.0'
2222

23-
s.dependency 'sqlite3', '~> 3.48.0'
23+
s.dependency 'sqlite3', '~> 3.49.0'
2424
s.dependency 'sqlite3/fts5'
2525
s.dependency 'sqlite3/perf-threadsafe'
2626
s.dependency 'sqlite3/rtree'

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"kind" : "remoteSourceControl",
66
"location" : "https://github.com/simolus3/CSQLite.git",
77
"state" : {
8-
"revision" : "7fa023c325a734f9dd1dcd30eeb65a620f745a2d"
8+
"revision" : "f13dc216059e85d60beed2bd9900f74be241e14d"
99
}
1010
}
1111
],

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
.library(name: "sqlite3-flutter-libs", type: .static, targets: ["sqlite3_flutter_libs"])
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/simolus3/CSQLite.git", revision: "7fa023c325a734f9dd1dcd30eeb65a620f745a2d")
16+
.package(url: "https://github.com/simolus3/CSQLite.git", revision: "f13dc216059e85d60beed2bd9900f74be241e14d")
1717
],
1818
targets: [
1919
.target(

sqlite3_flutter_libs/linux/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
1313
# We can't really ask users to use a cmake that recent, so there's this if here.
1414
FetchContent_Declare(
1515
sqlite3
16-
URL https://sqlite.org/2025/sqlite-autoconf-3480000.tar.gz
16+
URL https://sqlite.org/2025/sqlite-autoconf-3490000.tar.gz
1717
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1818
)
1919
else()
2020
FetchContent_Declare(
2121
sqlite3
22-
URL https://sqlite.org/2025/sqlite-autoconf-3480000.tar.gz
22+
URL https://sqlite.org/2025/sqlite-autoconf-3490000.tar.gz
2323
)
2424
endif()
2525
FetchContent_MakeAvailable(sqlite3)

sqlite3_flutter_libs/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite3_flutter_libs
22
description: Flutter plugin to include native sqlite3 libraries with your app
3-
version: 0.5.29+1
3+
version: 0.5.30
44
homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs
55
issue_tracker: https://github.com/simolus3/sqlite3.dart/issues
66

sqlite3_flutter_libs/windows/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
2929
# We can't really ask users to use a cmake that recent, so there's this if here.
3030
FetchContent_Declare(
3131
sqlite3
32-
URL https://sqlite.org/2025/sqlite-autoconf-3480000.tar.gz
32+
URL https://sqlite.org/2025/sqlite-autoconf-3490000.tar.gz
3333
DOWNLOAD_EXTRACT_TIMESTAMP NEW
3434
)
3535
else()
3636
FetchContent_Declare(
3737
sqlite3
38-
URL https://sqlite.org/2025/sqlite-autoconf-3480000.tar.gz
38+
URL https://sqlite.org/2025/sqlite-autoconf-3490000.tar.gz
3939
)
4040
endif()
4141
FetchContent_MakeAvailable(sqlite3)

0 commit comments

Comments
 (0)