Skip to content

Commit f19cc83

Browse files
committed
bump version to 0.18.0
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 998c867 commit f19cc83

File tree

8 files changed

+26
-26
lines changed

8 files changed

+26
-26
lines changed

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.17.2"
3+
version = "0.18.0"
44
edition = "2021"
55
exclude = ["cpython"]
66

examples/cli/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ run a Python-based component targetting the [wasi-cli] `command` world.
99

1010
## Prerequisites
1111

12-
* `Wasmtime` 26.0.0 or later
13-
* `componentize-py` 0.17.2
12+
* `Wasmtime` 37.0.1 or later
13+
* `componentize-py` 0.18.0
1414

1515
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
1616
you don't have `cargo`, you can download and install from
17-
https://github.com/bytecodealliance/wasmtime/releases/tag/v26.0.0.
17+
https://github.com/bytecodealliance/wasmtime/releases/tag/v37.0.1.
1818

1919
```
20-
cargo install --version 26.0.0 wasmtime-cli
21-
pip install componentize-py==0.17.2
20+
cargo install --version 37.0.1 wasmtime-cli
21+
pip install componentize-py==0.18.0
2222
```
2323

2424
## Running the demo

examples/http/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ run a Python-based component targetting the [wasi-http] `proxy` world.
99

1010
## Prerequisites
1111

12-
* `Wasmtime` 26.0.0 or later
13-
* `componentize-py` 0.17.2
12+
* `Wasmtime` 37.0.1 or later
13+
* `componentize-py` 0.18.0
1414

1515
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
1616
you don't have `cargo`, you can download and install from
17-
https://github.com/bytecodealliance/wasmtime/releases/tag/v26.0.0.
17+
https://github.com/bytecodealliance/wasmtime/releases/tag/v37.0.1.
1818

1919
```
20-
cargo install --version 26.0.0 wasmtime-cli
21-
pip install componentize-py==0.17.2
20+
cargo install --version 37.0.1 wasmtime-cli
21+
pip install componentize-py==0.18.0
2222
```
2323

2424
## Running the demo

examples/matrix-math/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ within a guest component.
1010

1111
## Prerequisites
1212

13-
* `wasmtime` 26.0.0 or later
14-
* `componentize-py` 0.17.2
13+
* `wasmtime` 37.0.1 or later
14+
* `componentize-py` 0.18.0
1515
* `NumPy`, built for WASI
1616

1717
Note that we use an unofficial build of NumPy since the upstream project does
1818
not yet publish WASI builds.
1919

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

2424
```
25-
cargo install --version 26.0.0 wasmtime-cli
26-
pip install componentize-py==0.17.2
25+
cargo install --version 37.0.1 wasmtime-cli
26+
pip install componentize-py==0.18.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/sandbox/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ sandboxed Python code snippets from within a Python app.
77

88
## Prerequisites
99

10-
* `wasmtime-py` 25.0.0 or later
11-
* `componentize-py` 0.17.2
10+
* `wasmtime-py` 37.0.1 or later
11+
* `componentize-py` 0.18.0
1212

1313
```
14-
pip install componentize-py==0.17.2 wasmtime==25.0.0
14+
pip install componentize-py==0.18.0 wasmtime==37.0.1
1515
```
1616

1717
## Running the demo

examples/tcp/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ making an outbound TCP request using `wasi-sockets`.
1010

1111
## Prerequisites
1212

13-
* `Wasmtime` 26.0.0 or later
14-
* `componentize-py` 0.17.2
13+
* `Wasmtime` 37.0.1 or later
14+
* `componentize-py` 0.18.0
1515

1616
Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If
1717
you don't have `cargo`, you can download and install from
18-
https://github.com/bytecodealliance/wasmtime/releases/tag/v26.0.0.
18+
https://github.com/bytecodealliance/wasmtime/releases/tag/v37.0.1.
1919

2020
```
21-
cargo install --version 26.0.0 wasmtime-cli
22-
pip install componentize-py==0.17.2
21+
cargo install --version 37.0.1 wasmtime-cli
22+
pip install componentize-py==0.18.0
2323
```
2424

2525
## 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.17.2"
10+
version = "0.18.0"
1111
description = "Tool to package Python applications as WebAssembly components"
1212
readme = "README.md"
1313
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)