close
Skip to content

Commit cfb492b

Browse files
Release for v0.5.5 (#3195)
* [tagpr] prepare for the next release * [tagpr] update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0d9b4f2 commit cfb492b

8 files changed

Lines changed: 30 additions & 14 deletions

File tree

‎.tagpr‎

Lines changed: 1 addition & 1 deletion
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.5
5+
command = just version-up 0.5.6
66
release = false
77
changelog = true

‎CHANGELOG.md‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [v0.5.5](https://github.com/youki-dev/youki/compare/v0.5.4...v0.5.5) - 2025-08-14
4+
### 💪 Improvements
5+
- fix(3198): fix difference in how commands are passed after exec and ps by @tommady in https://github.com/youki-dev/youki/pull/3201
6+
### 📖 Documentation improvements
7+
- Add license scan report and status by @fossabot in https://github.com/youki-dev/youki/pull/3204
8+
### 🧪 Test improvements and Misc Fixes
9+
- Revert "[DNM] ci: temp disable workflows" by @YJDoc2 in https://github.com/youki-dev/youki/pull/3194
10+
- Fixed Minor Spelling Errors by @CheatCodeSam in https://github.com/youki-dev/youki/pull/3205
11+
- chore(justfile):add install recipe by @saku3 in https://github.com/youki-dev/youki/pull/3213
12+
### Other Changes
13+
- (auto merged) chore(deps): bump the patch group with 2 updates by @dependabot[bot] in https://github.com/youki-dev/youki/pull/3203
14+
- (auto merged) chore(deps): bump serde_json from 1.0.141 to 1.0.142 in the patch group by @dependabot[bot] in https://github.com/youki-dev/youki/pull/3212
15+
- (auto merged) chore(deps): bump the patch group with 3 updates by @dependabot[bot] in https://github.com/youki-dev/youki/pull/3217
16+
- (auto merged) chore(deps): bump oci-spec from 0.8.1 to 0.8.2 in the patch group by @dependabot[bot] in https://github.com/youki-dev/youki/pull/3219
17+
- chore(deps): bump libbpf-sys from 1.5.2+v1.5.1 to 1.6.1+v1.6.1 by @dependabot[bot] in https://github.com/youki-dev/youki/pull/3218
18+
319
## [v0.5.4](https://github.com/youki-dev/youki/compare/v0.5.3...v0.5.4) - 2025-07-17
420
### 💪 Improvements
521
- add support exec-cpu-affinity by @saku3 in https://github.com/youki-dev/youki/pull/3164

‎Cargo.lock‎

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

‎crates/libcgroups/Cargo.toml‎

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

‎crates/libcontainer/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcontainer"
3-
version = "0.5.4" # MARK: Version
3+
version = "0.5.5" # MARK: Version
44
description = "Library for container control"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"
@@ -42,7 +42,7 @@ once_cell = "1.21.3"
4242
procfs = "0.17.0"
4343
prctl = "1.0.0"
4444
protobuf = "= 3.2.0" # https://github.com/checkpoint-restore/rust-criu/issues/19
45-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.4" } # MARK: Version
45+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.5" } # MARK: Version
4646
libseccomp = { version = "0.3.0", optional = true }
4747
serde = { version = "1.0", features = ["derive"] }
4848
serde_json = "1.0"

‎crates/liboci-cli/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liboci-cli"
3-
version = "0.5.4" # MARK: Version
3+
version = "0.5.5" # 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‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "youki"
3-
version = "0.5.4" # MARK: Version
3+
version = "0.5.5" # 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.99"
3232
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
33-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.4" } # MARK: Version
34-
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.4" } # MARK: Version
35-
liboci-cli = { path = "../liboci-cli", version = "0.5.4" } # MARK: Version
33+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.5" } # MARK: Version
34+
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.5" } # MARK: Version
35+
liboci-cli = { path = "../liboci-cli", version = "0.5.5" } # MARK: Version
3636
nix = "0.29.0"
3737
pentacle = "1.1.0"
3838
procfs = "0.17.0"

‎docs/src/user/basic_setup.md‎

Lines changed: 1 addition & 1 deletion
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.4/youki-0.5.4-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
86+
# curl -sSfL https://github.com/containers/youki/releases/download/v0.5.5/youki-0.5.5-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
8787
```
8888
<!--youki release end-->
8989

0 commit comments

Comments
 (0)