Skip to content

Commit 82f29e1

Browse files
authored
update wasm-tools dep (#51)
* update `wasm-tools` dep This pulls in bytecodealliance/wasm-tools#1341. Fixes #50 Signed-off-by: Joel Dice <joel.dice@fermyon.com> * bump version to 0.9.1 Signed-off-by: Joel Dice <joel.dice@fermyon.com> --------- Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent fd5b49c commit 82f29e1

7 files changed

Lines changed: 26 additions & 26 deletions

File tree

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "componentize-py"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2021"
55
exclude = ["cpython"]
66

@@ -17,9 +17,9 @@ zstd = "0.13.0"
1717
componentize-py-shared = { path = "shared" }
1818
wasmparser = "0.118.0"
1919
wasm-encoder = "0.38.1"
20-
# TODO: switch to release once https://github.com/bytecodealliance/wasm-tools/pull/1317 is released
21-
wit-parser = { git = "https://github.com/bytecodealliance/wasm-tools", rev = "231fa81b" }
22-
wit-component = { git = "https://github.com/bytecodealliance/wasm-tools", rev = "231fa81b" }
20+
# TODO: switch to release once https://github.com/bytecodealliance/wasm-tools/pull/1317 and https://github.com/bytecodealliance/wasm-tools/pull/1341 are released
21+
wit-parser = { git = "https://github.com/bytecodealliance/wasm-tools", rev = "928a946c" }
22+
wit-component = { git = "https://github.com/bytecodealliance/wasm-tools", rev = "928a946c" }
2323
indexmap = "2.1.0"
2424
bincode = "1.3.3"
2525
heck = "0.4.1"

examples/cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ snapshot, which may differ from later revisions.
1313
## Prerequisites
1414

1515
* `Wasmtime` 16.0.0 (later versions may use a different, incompatible `wasi-cli` snapshot)
16-
* `componentize-py` 0.9.0
16+
* `componentize-py` 0.9.1
1717

1818
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
1919
you don't have `cargo`, you can download and install from
2020
https://github.com/bytecodealliance/wasmtime/releases/tag/v16.0.0.
2121

2222
```
2323
cargo install --version 16.0.0 wasmtime-cli
24-
pip install componentize-py==0.9.0
24+
pip install componentize-py==0.9.1
2525
```
2626

2727
## Running the demo

examples/http/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ which may differ from later revisions.
1414
## Prerequisites
1515

1616
* `Wasmtime` 16.0.0 (later versions may use a different, incompatible `wasi-http` snapshot)
17-
* `componentize-py` 0.9.0
17+
* `componentize-py` 0.9.1
1818

1919
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
2020
you don't have `cargo`, you can download and install from
2121
https://github.com/bytecodealliance/wasmtime/releases/tag/v16.0.0.
2222

2323
```
2424
cargo install --version 16.0.0 wasmtime-cli
25-
pip install componentize-py==0.9.0
25+
pip install componentize-py==0.9.1
2626
```
2727

2828
## Running the demo

examples/matrix-math/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ within a guest component.
1111
## Prerequisites
1212

1313
* `wasmtime` 16.0.0 (later versions may use a different, incompatible `wasi-cli` snapshot)
14-
* `componentize-py` 0.9.0
14+
* `componentize-py` 0.9.1
1515
* `NumPy`, built for WASI
1616

1717
Note that we use an unofficial build of NumPy since the upstream project does
@@ -23,7 +23,7 @@ https://github.com/bytecodealliance/wasmtime/releases/tag/v16.0.0.
2323

2424
```
2525
cargo install --version 16.0.0 wasmtime-cli
26-
pip install componentize-py==0.9.0
26+
pip install componentize-py==0.9.1
2727
curl -OL https://github.com/dicej/wasi-wheels/releases/download/v0.0.1/numpy-wasi.tar.gz
2828
tar xf numpy-wasi.tar.gz
2929
```

examples/tcp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ snapshot, which may differ from later revisions.
1414
## Prerequisites
1515

1616
* `Wasmtime` 16.0.0 (later versions may use a different, incompatible `wasi-cli` snapshot)
17-
* `componentize-py` 0.9.0
17+
* `componentize-py` 0.9.1
1818

1919
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
2020
you don't have `cargo`, you can download and install from
2121
https://github.com/bytecodealliance/wasmtime/releases/tag/v16.0.0.
2222

2323
```
2424
cargo install --version 16.0.0 wasmtime-cli
25-
pip install componentize-py==0.9.0
25+
pip install componentize-py==0.9.1
2626
```
2727

2828
## Running the demo

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ features = ["pyo3/extension-module"]
77

88
[project]
99
name = "componentize-py"
10-
version = "0.9.0"
10+
version = "0.9.1"
1111
description = "Tool to package Python applications as WebAssembly components"
1212
readme = "README.md"
1313
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)