Skip to content

Commit c167210

Browse files
committed
Update sqlite to 3.41.2
1 parent 2ac9f65 commit c167210

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

integration_tests/flutter_libs/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4141
applicationId "com.example.flutter_libs"
42-
minSdkVersion 16
42+
minSdkVersion 19
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()
4545
versionName flutterVersionName

integration_tests/sqlcipher_flutter/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4141
applicationId "com.example.sqlcipher_flutter"
42-
minSdkVersion 16
42+
minSdkVersion 21
4343
targetSdkVersion 28
4444
versionCode flutterVersionCode.toInteger()
4545
versionName flutterVersionName

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

37
- Support Android projects built with Gradle 8.

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.41.0'
35+
implementation 'eu.simonbinder:sqlite3-native-library:3.41.2'
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.41.0'
20+
s.dependency 'sqlite3', '~> 3.41.2'
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/2023/sqlite-autoconf-3410000.tar.gz
16+
URL https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz
1717
DOWNLOAD_EXTRACT_TIMESTAMP NEW
1818
)
1919
else()
2020
FetchContent_Declare(
2121
sqlite3
22-
URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz
22+
URL https://sqlite.org/2023/sqlite-autoconf-3410200.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.41.0'
20+
s.dependency 'sqlite3', '~> 3.41.2'
2121
s.dependency 'sqlite3/fts5'
2222
s.dependency 'sqlite3/perf-threadsafe'
2323
s.dependency 'sqlite3/rtree'

sqlite3_flutter_libs/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: sqlite3_flutter_libs
22
description: Flutter plugin to include native sqlite3 libraries with your app
3-
version: 0.5.14
3+
version: 0.5.15
44
homepage: https://github.com/simolus3/sqlite3.dart/tree/main/sqlite3_flutter_libs
55
issue_tracker: https://github.com/simolus3/sqlite3.dart/issues
66

77
environment:
8-
sdk: ">=2.12.0 <3.0.0"
8+
sdk: ">=2.12.0 <4.0.0"
99
flutter: ">=1.10.1"
1010

1111
dependencies:

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/2023/sqlite-autoconf-3410000.tar.gz
32+
URL https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz
3333
DOWNLOAD_EXTRACT_TIMESTAMP NEW
3434
)
3535
else()
3636
FetchContent_Declare(
3737
sqlite3
38-
URL https://sqlite.org/2023/sqlite-autoconf-3410000.tar.gz
38+
URL https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz
3939
)
4040
endif()
4141
FetchContent_MakeAvailable(sqlite3)

0 commit comments

Comments
 (0)