Skip to content

Commit ce5cef0

Browse files
merge in latest changes
2 parents 562deaa + e4a1464 commit ce5cef0

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Install SQLite
5858
run: |
5959
./scripts/install_sqlite.sh ${{ matrix.sqlite_version }} ${{ matrix.sqlite_url }}
60-
mkdir -p assets && curl -LJ https://github.com/simolus3/sqlite3.dart/releases/download/sqlite3-2.3.0/sqlite3.wasm -o assets/sqlite3.wasm
60+
mkdir -p assets && curl -LJ https://github.com/simolus3/sqlite3.dart/releases/download/sqlite3-2.4.3/sqlite3.wasm -o assets/sqlite3.wasm
6161
6262
- name: Compile WebWorker
6363
run: dart compile js -o assets/db_worker.js -O0 lib/src/web/worker/worker.dart

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.0-alpha.4
2+
3+
- Add latest changes from master
4+
15
## 0.7.0-alpha.3
26

37
- Add latest changes from master

DEVELOPING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Developing Instructions
2+
3+
## Testing
4+
5+
Running tests for the `web` platform requires some preparation to be executed. The `sqlite3.wasm` and `db_worker.js` files need to be available in the Git ignored `./assets` folder.
6+
7+
See the [test action](./.github/workflows/test.yaml) for the latest steps.
8+
9+
On your local machine run the commands from the `Install SQLite`, `Compile WebWorker` and `Run Tests` steps.

pubspec.yaml

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

88
dependencies:
99
sqlite3_web: ^0.1.2-wip

0 commit comments

Comments
 (0)