Skip to content

Commit

Permalink
Merge pull request #11 from powersync-ja/release/0.2.0
Browse files Browse the repository at this point in the history
powersync-sqlite-core v0.2.0
  • Loading branch information
rkistner authored Aug 22, 2024
2 parents edc07c5 + a4b10a3 commit a206b30
Show file tree
Hide file tree
Showing 14 changed files with 450 additions and 416 deletions.
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

0 comments on commit a206b30

Please sign in to comment.