diff --git a/Cargo.lock b/Cargo.lock index 522de97..45fa439 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -391,7 +391,7 @@ dependencies = [ [[package]] name = "componentize-py" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 20fbf31..53b309f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "componentize-py" -version = "0.14.0" +version = "0.15.0" edition = "2021" exclude = ["cpython"] diff --git a/examples/cli/README.md b/examples/cli/README.md index 2ce325f..887178d 100644 --- a/examples/cli/README.md +++ b/examples/cli/README.md @@ -10,7 +10,7 @@ run a Python-based component targetting the [wasi-cli] `command` world. ## Prerequisites * `Wasmtime` 18.0.0 or later -* `componentize-py` 0.14.0 +* `componentize-py` 0.15.0 Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If you don't have `cargo`, you can download and install from @@ -18,7 +18,7 @@ https://github.com/bytecodealliance/wasmtime/releases/tag/v18.0.0. ``` cargo install --version 18.0.0 wasmtime-cli -pip install componentize-py==0.14.0 +pip install componentize-py==0.15.0 ``` ## Running the demo diff --git a/examples/http/README.md b/examples/http/README.md index fde9468..7376fd1 100644 --- a/examples/http/README.md +++ b/examples/http/README.md @@ -10,7 +10,7 @@ run a Python-based component targetting the [wasi-http] `proxy` world. ## Prerequisites * `Wasmtime` 18.0.0 or later -* `componentize-py` 0.14.0 +* `componentize-py` 0.15.0 Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If you don't have `cargo`, you can download and install from @@ -18,7 +18,7 @@ https://github.com/bytecodealliance/wasmtime/releases/tag/v18.0.0. ``` cargo install --version 18.0.0 wasmtime-cli -pip install componentize-py==0.14.0 +pip install componentize-py==0.15.0 ``` ## Running the demo diff --git a/examples/matrix-math/README.md b/examples/matrix-math/README.md index f3bc086..a75915b 100644 --- a/examples/matrix-math/README.md +++ b/examples/matrix-math/README.md @@ -11,7 +11,7 @@ within a guest component. ## Prerequisites * `wasmtime` 18.0.0 or later -* `componentize-py` 0.14.0 +* `componentize-py` 0.15.0 * `NumPy`, built for WASI 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/v18.0.0. ``` cargo install --version 18.0.0 wasmtime-cli -pip install componentize-py==0.14.0 +pip install componentize-py==0.15.0 curl -OL https://github.com/dicej/wasi-wheels/releases/download/v0.0.1/numpy-wasi.tar.gz tar xf numpy-wasi.tar.gz ``` diff --git a/examples/sandbox/README.md b/examples/sandbox/README.md index d7f2771..412b958 100644 --- a/examples/sandbox/README.md +++ b/examples/sandbox/README.md @@ -8,10 +8,10 @@ sandboxed Python code snippets from within a Python app. ## Prerequisites * `wasmtime-py` 18.0.0 or later -* `componentize-py` 0.14.0 +* `componentize-py` 0.15.0 ``` -pip install componentize-py==0.14.0 wasmtime==18.0.2 +pip install componentize-py==0.15.0 wasmtime==18.0.2 ``` ## Running the demo diff --git a/examples/tcp/README.md b/examples/tcp/README.md index 57f6c3f..fb910a5 100644 --- a/examples/tcp/README.md +++ b/examples/tcp/README.md @@ -11,7 +11,7 @@ making an outbound TCP request using `wasi-sockets`. ## Prerequisites * `Wasmtime` 18.0.0 or later -* `componentize-py` 0.14.0 +* `componentize-py` 0.15.0 Below, we use [Rust](https://rustup.rs/)'s `cargo` to install `Wasmtime`. If you don't have `cargo`, you can download and install from @@ -19,7 +19,7 @@ https://github.com/bytecodealliance/wasmtime/releases/tag/v18.0.0. ``` cargo install --version 18.0.0 wasmtime-cli -pip install componentize-py==0.14.0 +pip install componentize-py==0.15.0 ``` ## Running the demo diff --git a/pyproject.toml b/pyproject.toml index 10fa457..0af9ac7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ features = ["pyo3/extension-module"] [project] name = "componentize-py" -version = "0.14.0" +version = "0.15.0" description = "Tool to package Python applications as WebAssembly components" readme = "README.md" license = { file = "LICENSE" }