Skip to content

Commit 6863501

Browse files
chore(release): rev versions and update changelog for v0.16.0 release
Signed-off-by: Kate Goldenring <[email protected]>
1 parent ca66312 commit 6863501

File tree

21 files changed

+531
-34
lines changed

21 files changed

+531
-34
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## [Unreleased] - YYYY-MM-DD
5+
## v0.16.0 - 2024-10-04
66

77
### Added
88

@@ -27,4 +27,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
2727

2828
---
2929

30-
[Unreleased]: https://github.com/spinkube/containerd-shim-spin/compare/v0.15.1...HEAD
30+
v0.16.0: https://github.com/spinkube/containerd-shim-spin/compare/v0.15.1...v0.16.0

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[workspace.package]
2-
version = "0.15.1"
2+
version = "0.16.0"
33
edition = "2021"
44
license = "Apache-2.0"
55
readme = "README.md"
66
repository = "https://github.com/spinkube/containerd-shim-spin"
77
homepage = "https://github.com/spinkube/containerd-shim-spin"
8-
8+
authors = ["SpinKube Engineering Team"]
99

1010
[workspace]
1111
resolver = "2"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ This project aims to provide the [containerd shim](https://github.com/containerd
1818

1919
Below is a table for referencing the version of the Spin runtime used in each `containerd-shim-spin` release.
2020

21-
| **shim version** | v0.12.0 | v0.13.0 | v0.14.0 | v0.14.1 | v0.15.0 | v0.15.1 |
22-
| ---------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |
23-
| **spin** | [v2.2.0](https://github.com/fermyon/spin/releases/tag/v2.2.0) | [v2.3.1](https://github.com/fermyon/spin/releases/tag/v2.3.1) | [v2.4.2](https://github.com/fermyon/spin/releases/tag/v2.4.2) | [v2.4.3](https://github.com/fermyon/spin/releases/tag/v2.4.3) | [v2.6.0](https://github.com/fermyon/spin/releases/tag/v2.6.0) | [v2.6.0](https://github.com/fermyon/spin/releases/tag/v2.6.0) |
21+
| **shim version** | v0.12.0 | v0.13.0 | v0.14.0 | v0.14.1 | v0.15.0 | v0.15.1 | v0.16.0 |
22+
| ---------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | --- |
23+
| **spin** | [v2.2.0](https://github.com/fermyon/spin/releases/tag/v2.2.0) | [v2.3.1](https://github.com/fermyon/spin/releases/tag/v2.3.1) | [v2.4.2](https://github.com/fermyon/spin/releases/tag/v2.4.2) | [v2.4.3](https://github.com/fermyon/spin/releases/tag/v2.4.3) | [v2.6.0](https://github.com/fermyon/spin/releases/tag/v2.6.0) | [v2.6.0](https://github.com/fermyon/spin/releases/tag/v2.6.0) | [v2.6.0](https://github.com/fermyon/spin/releases/tag/v2.6.0) |
2424

2525
## Documentation
2626

containerd-shim-spin/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "containerd-shim-spin-v2"
3-
version = "0.15.1"
4-
authors = ["SpinKube Engineering Team"]
5-
edition = "2021"
6-
repository = 'https://github.com/spinkube/containerd-shim-spin'
7-
license = "Apache-2.0"
8-
homepage = 'https://github.com/spinkube/containerd-shim-spin'
3+
version = { workspace = true}
4+
authors = { workspace = true}
5+
edition = { workspace = true}
6+
repository = { workspace = true}
7+
license = { workspace = true}
8+
homepage = { workspace = true}
99
description = """
1010
Containerd shim for running Spin workloads.
1111
"""

containerd-shim-spin/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Before you begin, you need to have the following installed:
1414
Start a k3d cluster with the wasm shims already installed:
1515

1616
```bash
17-
k3d cluster create wasm-cluster --image ghcr.io/spinkube/containerd-shim-spin/k3d:v0.15.1 -p "8081:80@loadbalancer" --agents 2 --registry-create mycluster-registry:12345
17+
k3d cluster create wasm-cluster --image ghcr.io/spinkube/containerd-shim-spin/k3d:v0.16.0 -p "8081:80@loadbalancer" --agents 2 --registry-create mycluster-registry:12345
1818
```
1919

2020
Apply RuntimeClass for spin applications to use the spin wasm shim:

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 Spin shim installed and containerd configured. The script then applies the runtime classes for the shim 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/spinkube/containerd-shim-spin/k3d:v0.15.1 -p "8081:80@loadbalancer" --agents 2
20+
k3d cluster create wasm-cluster --image ghcr.io/spinkube/containerd-shim-spin/k3d:v0.16.0 -p "8081:80@loadbalancer" --agents 2
2121
kubectl apply -f https://github.com/spinkube/containerd-shim-spin/raw/main/deployments/workloads/runtime.yaml
2222
kubectl apply -f https://github.com/spinkube/containerd-shim-spin/raw/main/deployments/workloads/workload.yaml
2323
echo "waiting 5 seconds for workload to be ready"

deployments/workloads/workload.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
runtimeClassName: wasmtime-spin
1616
containers:
1717
- name: spin-hello
18-
image: ghcr.io/spinkube/containerd-shim-spin/examples/spin-rust-hello:v0.15.1
18+
image: ghcr.io/spinkube/containerd-shim-spin/examples/spin-rust-hello:v0.16.0
1919
command: ["/"]
2020
resources: # limit the resources to 128Mi of memory and 100m of CPU
2121
limits:

0 commit comments

Comments
 (0)