Skip to content

Commit f4c45fa

Browse files
authored
Merge pull request #10 from journeyapps/dart-3
Tests for Dart 3.x
2 parents 7094c3f + 9c40815 commit f4c45fa

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.github/workflows/test.yaml

+7
Original file line numberDiff line numberDiff 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

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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.

pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: sqlite_async
22
description: High-performance asynchronous interface for SQLite on Dart and Flutter.
3-
version: 0.4.0
3+
version: 0.5.0
44
repository: https://github.com/journeyapps/sqlite_async.dart
55
environment:
6-
sdk: '>=2.19.1 <3.0.0'
6+
sdk: '>=2.19.1 <4.0.0'
77

88
dependencies:
9-
sqlite3: ^1.10.1
9+
sqlite3: '>=1.10.1 <3.0.0'
1010
async: ^2.10.0
1111
collection: ^1.17.0
1212

test/json1_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TestUser {
2020
}
2121

2222
void main() {
23-
group('Basic Tests', () {
23+
group('json1 Tests', () {
2424
late String path;
2525

2626
setUp(() async {

0 commit comments

Comments
 (0)