Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

powersync-sqlite-core v0.2.0 #11

Merged
merged 7 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/empty-walls-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@journeyapps/wa-sqlite": patch
---

Fix some type declarations
5 changes: 5 additions & 0 deletions .changeset/hungry-mangos-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@journeyapps/wa-sqlite": minor
---

Update powersync-sqlite-core to v0.2.0
5 changes: 5 additions & 0 deletions .changeset/red-cars-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@journeyapps/wa-sqlite": minor
---

Rename back to @journeyapps/wa-sqlite
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ name: wa-sqlite CI

on:
push:
branches: ['master']
branches: ["master"]
pull_request:
branches: ['master']
branches: ["master"]

env:
EM_VERSION: 3.1.45
EM_CACHE_FOLDER: 'emsdk-cache'
EM_VERSION: 3.1.64
EM_CACHE_FOLDER: "emsdk-cache"

jobs:
build:
Expand All @@ -24,12 +24,12 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
submodules: "recursive"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: "npm"

# Install yarn dependencies.
- name: Get yarn cache directory path
Expand All @@ -45,8 +45,8 @@ jobs:
- run: yarn install
- name: Rust Setup
run: |
rustup toolchain install nightly-2023-08-28-x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain nightly-2023-08-28-x86_64-unknown-linux-gnu
rustup toolchain install nightly-2024-05-18-x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain nightly-2024-05-18-x86_64-unknown-linux-gnu

- name: Test with checked-in WASM files
run: yarn test --reporters progress
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @powersync/wa-sqlite
# @journeyapps/wa-sqlite

## 0.2.1

Expand Down
267 changes: 134 additions & 133 deletions dist/wa-sqlite-async.mjs

Large diffs are not rendered by default.

Binary file modified dist/wa-sqlite-async.wasm
Binary file not shown.
259 changes: 130 additions & 129 deletions dist/wa-sqlite.mjs

Large diffs are not rendered by default.

Binary file modified dist/wa-sqlite.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@powersync/wa-sqlite",
"name": "@journeyapps/wa-sqlite",
"version": "0.2.1",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions scripts/docker-setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
. $HOME/.cargo/env && \
rustup toolchain install nightly-2023-08-28-aarch64-unknown-linux-gnu && \
rustup component add rust-src --toolchain nightly-2023-08-28-aarch64-unknown-linux-gnu
rustup toolchain install nightly-2024-05-18-aarch64-unknown-linux-gnu && \
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-unknown-linux-gnu

sudo apt-get update -y
sudo apt-get install -y tclsh
Expand Down
Loading
Loading