Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
# While async is off-by-default and toolchains are percolating this is a
# separate job to get configured slightly differently.
async:
name: Test Async
name: Test Async (allowed to fail)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
- build
- verify-publish
- check
- async
# - async
if: always()

steps:
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,10 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
- uses: softprops/action-gh-release@v1
if: steps.tag.outputs.push_tag == 'yes'
with:
files: "dist/*"
tag_name: v${{ steps.tag.outputs.version }}
- if: steps.tag.outputs.push_tag == 'yes'
run: gh release create --generate-notes v${{ steps.tag.outputs.version }} dist/*
env:
GH_TOKEN: ${{ github.token }}

- uses: rust-lang/crates-io-auth-action@v1
id: auth
Expand Down
100 changes: 47 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ prettyplease = "0.2.20"
syn = { version = "2.0.89", features = ["printing"] }
futures = "0.3.31"

wat = "1.240.0"
wasmparser = "0.240.0"
wasm-encoder = "0.240.0"
wasm-metadata = { version = "0.240.0", default-features = false }
wit-parser = "0.240.0"
wit-component = "0.240.0"
wasm-compose = "0.240.0"
wat = "1.241.0"
wasmparser = "0.241.0"
wasm-encoder = "0.241.0"
wasm-metadata = { version = "0.241.0", default-features = false }
wit-parser = "0.241.0"
wit-component = "0.241.0"
wasm-compose = "0.241.0"

wit-bindgen-core = { path = 'crates/core', version = '0.47.0' }
wit-bindgen-c = { path = 'crates/c', version = '0.47.0' }
Expand Down Expand Up @@ -89,4 +89,3 @@ csharp = ['dep:wit-bindgen-csharp']
csharp-mono = ['csharp']
moonbit = ['dep:wit-bindgen-moonbit']
async = []

Loading