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

Commit bb8e65d

Browse files
authored
chore: bump version to 0.6.0 (#96)
* bump version to 0.6.0 Signed-off-by: mossaka <[email protected]> * changed slight version back to 0.1 Signed-off-by: jiaxiao zhou <[email protected]> --------- Signed-off-by: mossaka <[email protected]> Signed-off-by: jiaxiao zhou <[email protected]>
1 parent 0e8eade commit bb8e65d

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
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.5.1"
3+
version = "0.6.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.5.1"
3+
version = "0.6.0"
44
authors = ["DeisLabs Engineering Team"]
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.5.1 -p "8081:80@loadbalancer" --agents 2
20+
k3d cluster create wasm-cluster --image ghcr.io/deislabs/containerd-wasm-shims/examples/k3d:v0.6.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: 2 additions & 2 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.5.1
18+
image: ghcr.io/deislabs/containerd-wasm-shims/examples/slight-rust-hello:v0.6.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.5.1
57+
image: ghcr.io/deislabs/containerd-wasm-shims/examples/spin-rust-hello:v0.6.0
5858
command: ["/"]
5959
resources: # limit the resources to 128Mi of memory and 100m of CPU
6060
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.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55

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

images/spin-outbound-redis/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spin-outbound-redis"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["DeisLabs Engineering Team"]
55
edition = "2021"
66

@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
anyhow = "1"
1212
bytes = "1"
1313
http = "0.2"
14-
spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.0.0" }
14+
spin-sdk = { git = "https://github.com/fermyon/spin", rev = "2f50f3e5db61bc68339882f903a283e8bc82185c" }
1515
wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba" }
1616

1717
[workspace]

images/spin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spin-rust-hello"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["DeisLabs Engineering Team"]
55
edition = "2021"
66

@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
anyhow = "1"
1212
bytes = "1"
1313
http = "0.2"
14-
spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.0.0" }
14+
spin-sdk = { git = "https://github.com/fermyon/spin", rev = "2f50f3e5db61bc68339882f903a283e8bc82185c" }
1515
wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba" }
1616

1717
[workspace]

0 commit comments

Comments
 (0)