Skip to content

Commit 4ca4971

Browse files
authored
bump version to 0.10.0 (#61)
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 6535546 commit 4ca4971

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "componentize-py"
3-
version = "0.9.2"
3+
version = "0.10.0"
44
edition = "2021"
55
exclude = ["cpython"]
66

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.2
16+
* `componentize-py` 0.10.0
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.2
24+
pip install componentize-py==0.10.0
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.2
17+
* `componentize-py` 0.10.0
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.2
25+
pip install componentize-py==0.10.0
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.2
14+
* `componentize-py` 0.10.0
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.2
26+
pip install componentize-py==0.10.0
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.2
17+
* `componentize-py` 0.10.0
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.2
25+
pip install componentize-py==0.10.0
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.2"
10+
version = "0.10.0"
1111
description = "Tool to package Python applications as WebAssembly components"
1212
readme = "README.md"
1313
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)