Skip to content

Commit c40bcda

Browse files
authored
Bump version (#49)
* Bump version * Update test workflow minimum dart sdk
1 parent 31c2fad commit c40bcda

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
branches:
6-
- '**'
6+
- "**"
77

88
jobs:
99
build:
@@ -32,19 +32,19 @@ jobs:
3232
include:
3333
- sqlite_version: "3440200"
3434
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3440200.tar.gz"
35-
dart_sdk: 3.3.3
35+
dart_sdk: 3.4.0
3636
- sqlite_version: "3430200"
3737
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3430200.tar.gz"
38-
dart_sdk: 3.3.3
38+
dart_sdk: 3.4.0
3939
- sqlite_version: "3420000"
4040
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
41-
dart_sdk: 3.3.3
41+
dart_sdk: 3.4.0
4242
- sqlite_version: "3410100"
4343
sqlite_url: "https://www.sqlite.org/2023/sqlite-autoconf-3410100.tar.gz"
44-
dart_sdk: 3.3.3
44+
dart_sdk: 3.4.0
4545
- sqlite_version: "3380000"
4646
sqlite_url: "https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
47-
dart_sdk: 3.3.3
47+
dart_sdk: 3.4.0
4848
steps:
4949
- uses: actions/checkout@v3
5050
- uses: dart-lang/setup-dart@v1

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.7.0-alpha.5
2+
3+
- The dependency for the `Drift` package is now removed in favour of using the new `sqlite3_web` package.
4+
- A new implementation for WebDatabase is used for SQL database connections on web.
5+
- New exports are added for downstream consumers of this package to extended custom workers with custom SQLite function capabilities.
6+
- Update minimum Dart SDK to 3.4.0
7+
18
## 0.7.0-alpha.4
29

310
- Add latest changes from master

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: sqlite_async
22
description: High-performance asynchronous interface for SQLite on Dart and Flutter.
3-
version: 0.7.0-alpha.4
3+
version: 0.7.0-alpha.5
44
repository: https://github.com/powersync-ja/sqlite_async.dart
55
environment:
6-
sdk: ">=3.3.0 <4.0.0"
6+
sdk: ">=3.4.0 <4.0.0"
77

88
dependencies:
99
sqlite3_web: ^0.1.2-wip
10-
sqlite3: ^2.4.3
10+
sqlite3: ^2.4.4
1111
async: ^2.10.0
1212
collection: ^1.17.0
1313
mutex: ^3.1.0

0 commit comments

Comments
 (0)