Skip to content

Commit b3b9788

Browse files
Release for v0.5.1 (#3044)
* [tagpr] prepare for the next release * [tagpr] update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1653113 commit b3b9788

File tree

8 files changed

+20
-14
lines changed

8 files changed

+20
-14
lines changed

.tagpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
vPrefix = true
33
releaseBranch = main
44
versionFile = -
5-
command = just version-up 0.5.1
5+
command = just version-up 0.5.2
66
release = false
77
changelog = true

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v0.5.1](https://github.com/youki-dev/youki/compare/v0.5.0...v0.5.1) - 2025-01-06
4+
### 🐛 Bug Fixes
5+
- Fix building the wasmedge feature by @utam0k in https://github.com/youki-dev/youki/pull/3041
6+
### 🧪 Test improvements and Misc Fixes
7+
- Do `cargo check` before releasing a new version by @utam0k in https://github.com/youki-dev/youki/pull/3039
8+
39
## [v0.5.0](https://github.com/youki-dev/youki/compare/v0.4.1...v0.5.0) - 2025-01-02
410
### 💪 Improvements
511
- libcontainer: support set stdios for container by @abel-von in https://github.com/youki-dev/youki/pull/2961

Cargo.lock

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

crates/libcgroups/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcgroups"
3-
version = "0.5.0" # MARK: Version
3+
version = "0.5.1" # MARK: Version
44
description = "Library for cgroup"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"

crates/libcontainer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcontainer"
3-
version = "0.5.0" # MARK: Version
3+
version = "0.5.1" # MARK: Version
44
description = "Library for container control"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"
@@ -41,7 +41,7 @@ oci-spec = { version = "0.7.1", features = ["runtime"] }
4141
once_cell = "1.20.2"
4242
procfs = "0.17.0"
4343
prctl = "1.0.0"
44-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version
44+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.1" } # MARK: Version
4545
libseccomp = { version = "0.3.0", optional = true }
4646
serde = { version = "1.0", features = ["derive"] }
4747
serde_json = "1.0"

crates/liboci-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liboci-cli"
3-
version = "0.5.0" # MARK: Version
3+
version = "0.5.1" # MARK: Version
44
description = "Parse command line arguments for OCI container runtimes"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"

crates/youki/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "youki"
3-
version = "0.5.0" # MARK: Version
3+
version = "0.5.1" # MARK: Version
44
description = "A container runtime written in Rust"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"
@@ -30,9 +30,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
3030
[dependencies]
3131
anyhow = "1.0.95"
3232
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
33-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version
34-
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.0" } # MARK: Version
35-
liboci-cli = { path = "../liboci-cli", version = "0.5.0" } # MARK: Version
33+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.1" } # MARK: Version
34+
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.1" } # MARK: Version
35+
liboci-cli = { path = "../liboci-cli", version = "0.5.1" } # MARK: Version
3636
nix = "0.28.0"
3737
pentacle = "1.1.0"
3838
procfs = "0.17.0"

docs/src/user/basic_setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Install from the GitHub release as root:
8383

8484
<!--youki release begin-->
8585
```console
86-
# curl -sSfL https://github.com/containers/youki/releases/download/v0.5.0/youki-0.5.0-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
86+
# curl -sSfL https://github.com/containers/youki/releases/download/v0.5.1/youki-0.5.1-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
8787
```
8888
<!--youki release end-->
8989

0 commit comments

Comments
 (0)