Skip to content

Commit 980a5bb

Browse files
committed
Update sqlite to 3.45.1
1 parent 6e6e0b3 commit 980a5bb

File tree

10 files changed

+16
-12
lines changed

10 files changed

+16
-12
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179

180180
- name: Web tests
181181
run: |
182-
curl https://storage.googleapis.com/simon-public-euw3/assets/sqlite3/wasm/2.2.0/sqlite3.wasm -o example/web/sqlite3.wasm
182+
curl https://storage.googleapis.com/simon-public-euw3/assets/sqlite3/wasm/2.3.0/sqlite3.wasm -o example/web/sqlite3.wasm
183183
dart test -P web -r expanded
184184
# If browsers behave differently on different platforms, surely that's not our fault...
185185
# So, only run browser tests on Linux to be faster.

sqlite3/assets/wasm/CMakeLists.txt

+2-2
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-3450000.tar.gz
13+
URL https://sqlite.org/2024/sqlite-autoconf-3450100.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-3450000.tar.gz
20+
URL https://sqlite.org/2024/sqlite-autoconf-3450100.tar.gz
2121
)
2222
endif()
2323

sqlite3/test/wasm/sqlite3_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void main() {
4141
expect(
4242
version,
4343
isA<Version>()
44-
.having((e) => e.libVersion, 'libVersion', startsWith('3.44')),
44+
.having((e) => e.libVersion, 'libVersion', startsWith('3.45')),
4545
);
4646
});
4747

sqlite3_flutter_libs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.20
2+
3+
- Upgrade sqlite to version `3.45.1`.
4+
15
## 0.5.19+1
26

37
- Upgrade sqlite to version `3.45.0`.

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

sqlite3_flutter_libs/ios/sqlite3_flutter_libs.podspec

+1-1
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.0'
20+
s.dependency 'sqlite3', '~> 3.45.1'
2121
s.dependency 'sqlite3/fts5'
2222
s.dependency 'sqlite3/perf-threadsafe'
2323
s.dependency 'sqlite3/rtree'

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

sqlite3_flutter_libs/macos/sqlite3_flutter_libs.podspec

+1-1
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.0'
20+
s.dependency 'sqlite3', '~> 3.45.1'
2121
s.dependency 'sqlite3/fts5'
2222
s.dependency 'sqlite3/perf-threadsafe'
2323
s.dependency 'sqlite3/rtree'

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

0 commit comments

Comments
 (0)