Skip to content

Commit b58f8a6

Browse files
committed
Update sqlite to 3.47.2
1 parent 89f0ba6 commit b58f8a6

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

sqlite3/assets/wasm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include(FetchContent)
1212
FetchContent_Declare(
1313
sqlite3
1414
# NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`
15-
URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz
15+
URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz
1616
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1717
)
1818

sqlite3_flutter_libs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.28
2+
3+
- Upgrade sqlite to version `3.37.2`.
4+
15
## 0.5.27
26

37
- Upgrade sqlite to version `3.47.1`.

sqlite3_flutter_libs/android/build.gradle

Lines changed: 1 addition & 1 deletion
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.47.1'
35+
implementation 'eu.simonbinder:sqlite3-native-library:3.47.2'
3636
}

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
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.47.1'
23+
s.dependency 'sqlite3', '~> 3.47.2'
2424
s.dependency 'sqlite3/fts5'
2525
s.dependency 'sqlite3/perf-threadsafe'
2626
s.dependency 'sqlite3/rtree'

sqlite3_flutter_libs/darwin/sqlite3_flutter_libs/Package.swift

Lines changed: 1 addition & 1 deletion
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/sbooth/CSQLite.git", exact: "3.47.1")
16+
.package(url: "https://github.com/sbooth/CSQLite.git", exact: "3.47.2")
1717
],
1818
targets: [
1919
.target(

sqlite3_flutter_libs/linux/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
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/2024/sqlite-autoconf-3470100.tar.gz
16+
URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz
1717
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1818
)
1919
else()
2020
FetchContent_Declare(
2121
sqlite3
22-
URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz
22+
URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz
2323
)
2424
endif()
2525
FetchContent_MakeAvailable(sqlite3)

sqlite3_flutter_libs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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.27
3+
version: 0.5.28
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

Lines changed: 2 additions & 2 deletions
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/2024/sqlite-autoconf-3470100.tar.gz
32+
URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz
3333
DOWNLOAD_EXTRACT_TIMESTAMP NEW
3434
)
3535
else()
3636
FetchContent_Declare(
3737
sqlite3
38-
URL https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz
38+
URL https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz
3939
)
4040
endif()
4141
FetchContent_MakeAvailable(sqlite3)

0 commit comments

Comments
 (0)