File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,20 @@ jobs:
3030 strategy :
3131 matrix :
3232 include :
33+ - sqlite_version : " 3420000"
34+ sqlite_url : " https://www.sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
35+ dart_sdk : 3.0.6
3336 - sqlite_version : " 3410100"
3437 sqlite_url : " https://www.sqlite.org/2023/sqlite-autoconf-3410100.tar.gz"
38+ dart_sdk : 2.19.1
3539 - sqlite_version : " 3380000"
3640 sqlite_url : " https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
41+ dart_sdk : 2.19.1
3742 steps :
3843 - uses : actions/checkout@v3
3944 - uses : dart-lang/setup-dart@v1
45+ with :
46+ sdk : ${{ matrix.dart_sdk }}
4047
4148 - name : Install dependencies
4249 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+
16## 0.4.0
27
38- Ensure database connections are cleaned up on unhandled Isolate errors.
Original file line number Diff line number Diff line change 11name : sqlite_async
22description : High-performance asynchronous interface for SQLite on Dart and Flutter.
3- version : 0.4 .0
3+ version : 0.5 .0
44repository : https://github.com/journeyapps/sqlite_async.dart
55environment :
6- sdk : ' >=2.19.1 <3 .0.0'
6+ sdk : ' >=2.19.1 <4 .0.0'
77
88dependencies :
9- sqlite3 : ^ 1.10.1
9+ sqlite3 : ' >= 1.10.1 <3.0.0 '
1010 async : ^2.10.0
1111 collection : ^1.17.0
1212
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class TestUser {
2020}
2121
2222void main () {
23- group ('Basic Tests' , () {
23+ group ('json1 Tests' , () {
2424 late String path;
2525
2626 setUp (() async {
You can’t perform that action at this time.
0 commit comments