Skip to content

Commit 205f941

Browse files
authored
Merge pull request #951 from Mossaka/bump-containerd-shim-wasm-v1
containerd-shim-wasm: bump version to 1.0.0 and updated CHANGELOG
2 parents 109d448 + 348fda6 commit 205f941

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ anyhow = "1.0"
2727
chrono = { version = "0.4", default-features = false, features = ["clock"] }
2828
containerd-shim = "0.8"
2929
containerd-shimkit = { path = "crates/containerd-shimkit", version = "0.1.0" }
30-
containerd-shim-wasm = { path = "crates/containerd-shim-wasm", version = "0.10.0" }
30+
containerd-shim-wasm = { path = "crates/containerd-shim-wasm", version = "1.0.0" }
3131
containerd-shim-wasm-test-modules = { path = "crates/containerd-shim-wasm-test-modules", version = "0.4.0"}
3232
oci-tar-builder = { path = "crates/oci-tar-builder", version = "0.4.0" }
3333
env_logger = "0.11"

crates/containerd-shim-wasm/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
44

55
## [Unreleased]
66

7+
## [v1.0.0] - 2025-03-26
8+
79
### Changed
810
- `containerd_shim_wasm::sandbox::shim::Cli` -> `containerd_shim_wasm::sandbox::shim::Shim` and it is no longer public, because this was not intended to be used by users of the crate.
911
- Breaking change: All methods in the `Engine` trait (except `name` and `supported_layers_types`) are now async. ([#931](https://github.com/containerd/runwasi/pull/931))
@@ -106,7 +108,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
106108
- Removed dependency on `prost-types` ([#656](https://github.com/containerd/runwasi/pull/656))
107109
- Removed dependency on `native-tls` ([#683](https://github.com/containerd/runwasi/pull/683)), note that the `opentelemetry` feature still depends on `native-tls`.
108110

109-
[Unreleased]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v0.10.0..HEAD>
111+
[Unreleased]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v1.0.0..HEAD>
112+
[v1.0.0]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v0.10.0...containerd-shim-wasm/v1.0.0>
110113
[v0.10.0]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v0.9.0...containerd-shim-wasm/v0.10.0>
111114
[v0.9.0]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v0.8.0...containerd-shim-wasm/v0.9.0>
112115
[v0.8.0]: <https://github.com/containerd/runwasi/compare/containerd-shim-wasm/v0.7.0...containerd-shim-wasm/v0.8.0>

crates/containerd-shim-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "containerd-shim-wasm"
33
description = "Library for building containerd shims for wasm"
4-
version = "0.10.0"
4+
version = "1.0.0"
55
edition.workspace = true
66
license.workspace = true
77
readme = "README.md"

0 commit comments

Comments
 (0)