Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit 88c0cbc

Browse files
authored
chore: bump version to 0.8.0 for all crates, tests, and images (#115)
Signed-off-by: jiaxiao zhou <[email protected]>
1 parent 3e09e37 commit 88c0cbc

File tree

13 files changed

+561
-43
lines changed

13 files changed

+561
-43
lines changed

containerd-shim-slight-v1/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.

containerd-shim-slight-v1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "containerd-shim-slight-v1"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["DeisLabs Engineering Team"]
55
edition = "2021"
66
repository = 'https://github.com/deislabs/containerd-wasm-shims'

containerd-shim-spin-v1/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.

containerd-shim-spin-v1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "containerd-shim-spin-v1"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["DeisLabs Engineering Team"]
55
edition = "2021"
66
repository = 'https://github.com/deislabs/containerd-wasm-shims'

containerd-shim-wws-v1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "containerd-shim-wws-v1"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Wasm Labs team <[email protected]>"]
55
edition = "2021"
66
repository = 'https://github.com/deislabs/containerd-wasm-shims'

deployments/k3d/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ tree .
1717
## How to run the example
1818
The shell script below will create a k3d cluster locally with the Wasm shims installed and containerd configured. The script then applies the runtime classes for the shims and an example service and deployment. Finally, we curl the `/hello` and receive a response from the example workload.
1919
```shell
20-
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.7.0 -p "8081:80@loadbalancer" --agents 2
20+
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.8.0 -p "8081:80@loadbalancer" --agents 2
2121
kubectl apply -f https://github.com/deislabs/containerd-wasm-shims/raw/main/deployments/workloads/runtime.yaml
2222
kubectl apply -f https://github.com/deislabs/containerd-wasm-shims/raw/main/deployments/workloads/workload.yaml
2323
echo "waiting 5 seconds for workload to be ready"

deployments/workloads/workload.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
runtimeClassName: wasmtime-slight
1616
containers:
1717
- name: slight-hello
18-
image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.7.0
18+
image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.8.0
1919
command: ["/"]
2020
resources: # limit the resources to 128Mi of memory and 100m of CPU
2121
limits:
@@ -54,7 +54,7 @@ spec:
5454
runtimeClassName: wasmtime-spin
5555
containers:
5656
- name: spin-hello
57-
image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.7.0
57+
image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.8.0
5858
command: ["/"]
5959
resources: # limit the resources to 128Mi of memory and 100m of CPU
6060
limits:
@@ -93,7 +93,7 @@ spec:
9393
runtimeClassName: wasmtime-wws
9494
containers:
9595
- name: wws-hello
96-
image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.7.0
96+
image: ghcr.io/deislabs/containerd-wasm-shims/examples/wws-js-hello:v0.8.0
9797
command: ["/"]
9898
resources: # limit the resources to 128Mi of memory and 100m of CPU
9999
limits:

images/slight/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.

images/slight/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-server-lib"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)