Skip to content

Commit e9582b8

Browse files
committed
Upgrade to sqlite 3.46.0
1 parent cc09578 commit e9582b8

File tree

9 files changed

+14
-11
lines changed

9 files changed

+14
-11
lines changed

sqlite3/assets/wasm/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
1010
FetchContent_Declare(
1111
sqlite3
1212
# NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`
13-
URL https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
13+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
1414
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1515
)
1616
else()
1717
FetchContent_Declare(
1818
sqlite3
1919
# NOTE: When changing this, also update `test/wasm/sqlite3_test.dart`
20-
URL https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
20+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
2121
)
2222
endif()
2323

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.22
2+
3+
- Upgrade sqlite to version `3.46.0`.
4+
15
## 0.5.21
26

37
- Upgrade sqlite to version `3.45.3`.

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.45.3+1'
35+
implementation 'eu.simonbinder:sqlite3-native-library:3.46.0'
3636
}

sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A new flutter plugin project.
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'Flutter'
1919

20-
s.dependency 'sqlite3', '~> 3.45.3+1'
20+
s.dependency 'sqlite3', '~> 3.46.0'
2121
s.dependency 'sqlite3/fts5'
2222
s.dependency 'sqlite3/perf-threadsafe'
2323
s.dependency 'sqlite3/rtree'

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-3450300.tar.gz
16+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
1717
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1818
)
1919
else()
2020
FetchContent_Declare(
2121
sqlite3
22-
URL https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
22+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
2323
)
2424
endif()
2525
FetchContent_MakeAvailable(sqlite3)

sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'FlutterMacOS'
1919

20-
s.dependency 'sqlite3', '~> 3.45.3+1'
20+
s.dependency 'sqlite3', '~> 3.46.0'
2121
s.dependency 'sqlite3/fts5'
2222
s.dependency 'sqlite3/perf-threadsafe'
2323
s.dependency 'sqlite3/rtree'

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.21
3+
version: 0.5.22
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-3450300.tar.gz
32+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
3333
DOWNLOAD_EXTRACT_TIMESTAMP NEW
3434
)
3535
else()
3636
FetchContent_Declare(
3737
sqlite3
38-
URL https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz
38+
URL https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz
3939
)
4040
endif()
4141
FetchContent_MakeAvailable(sqlite3)

sqlite3_web/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
- Fix remote error after closing databases.
88

9-
109
## 0.1.0-wip
1110

1211
- Initial WIP version.

0 commit comments

Comments
 (0)