Skip to content

Commit dbc501b

Browse files
committedJan 27, 2025·
Test with Dart stable, add changelogs
1 parent 281d81c commit dbc501b

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed
 

‎.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535
include:
3636
- sqlite_version: "3440200"
3737
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3440200.tar.gz"
38-
dart_sdk: 3.5.0
38+
dart_sdk: stable
3939
- sqlite_version: "3430200"
4040
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3430200.tar.gz"
41-
dart_sdk: 3.5.0
41+
dart_sdk: stable
4242
- sqlite_version: "3420000"
4343
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
44-
dart_sdk: 3.5.0
44+
dart_sdk: stable
4545
- sqlite_version: "3410100"
4646
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3410100.tar.gz"
47-
dart_sdk: 3.5.0
47+
dart_sdk: stable
4848
- sqlite_version: "3380000"
4949
sqlite_url: "https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
50-
dart_sdk: 3.5.0
50+
dart_sdk: stable
5151
steps:
5252
- uses: actions/checkout@v3
5353
- uses: dart-lang/setup-dart@v1

‎packages/drift_sqlite_async/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.1
2+
3+
- Fix lints.
4+
15
## 0.2.0
26

37
- Automatically run Drift migrations

‎packages/drift_sqlite_async/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: drift_sqlite_async
2-
version: 0.2.0
2+
version: 0.2.1
33
homepage: https://github.com/powersync-ja/sqlite_async.dart
44
repository: https://github.com/powersync-ja/sqlite_async.dart
55
description: Use Drift with a sqlite_async database, allowing both to be used in the same application.

‎packages/sqlite_async/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.11.2
2+
3+
- Support latest version of `package:sqlite3_web`.
4+
- Support `dart2wasm`.
5+
16
## 0.11.1
27

38
- Remove remaining `dart:js_util` imports in favor of new interop APIs.

‎packages/sqlite_async/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite_async
22
description: High-performance asynchronous interface for SQLite on Dart and Flutter.
3-
version: 0.11.1
3+
version: 0.11.2
44
repository: https://github.com/powersync-ja/sqlite_async.dart
55
environment:
66
sdk: ">=3.5.0 <4.0.0"

0 commit comments

Comments
 (0)
Please sign in to comment.