File tree 4 files changed +16
-4
lines changed
4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,20 @@ jobs:
30
30
strategy :
31
31
matrix :
32
32
include :
33
+ - sqlite_version : " 3420000"
34
+ sqlite_url : " https://www.sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
35
+ dart_sdk : 3.0.6
33
36
- sqlite_version : " 3410100"
34
37
sqlite_url : " https://www.sqlite.org/2023/sqlite-autoconf-3410100.tar.gz"
38
+ dart_sdk : 2.19.1
35
39
- sqlite_version : " 3380000"
36
40
sqlite_url : " https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
41
+ dart_sdk : 2.19.1
37
42
steps :
38
43
- uses : actions/checkout@v3
39
44
- uses : dart-lang/setup-dart@v1
45
+ with :
46
+ sdk : ${{ matrix.dart_sdk }}
40
47
41
48
- name : Install dependencies
42
49
run : dart pub get
Original file line number Diff line number Diff line change
1
+ ## 0.5.0
2
+
3
+ - No code changes.
4
+ - Updated dependencies to support sqlite3 2.x.
5
+
1
6
## 0.4.0
2
7
3
8
- Ensure database connections are cleaned up on unhandled Isolate errors.
Original file line number Diff line number Diff line change 1
1
name : sqlite_async
2
2
description : High-performance asynchronous interface for SQLite on Dart and Flutter.
3
- version : 0.4 .0
3
+ version : 0.5 .0
4
4
repository : https://github.com/journeyapps/sqlite_async.dart
5
5
environment :
6
- sdk : ' >=2.19.1 <3 .0.0'
6
+ sdk : ' >=2.19.1 <4 .0.0'
7
7
8
8
dependencies :
9
- sqlite3 : ^ 1.10.1
9
+ sqlite3 : ' >= 1.10.1 <3.0.0 '
10
10
async : ^2.10.0
11
11
collection : ^1.17.0
12
12
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class TestUser {
20
20
}
21
21
22
22
void main () {
23
- group ('Basic Tests' , () {
23
+ group ('json1 Tests' , () {
24
24
late String path;
25
25
26
26
setUp (() async {
You can’t perform that action at this time.
0 commit comments