Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tagpr
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
vPrefix = true
releaseBranch = main
versionFile = -
command = just version-up 0.5.3
command = just version-up 0.5.4
release = false
changelog = true
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## [v0.4.2](https://github.com/next-hat/youki/compare/v0.4.1...v0.4.2) - 2025-03-10

## [v0.5.2](https://github.com/youki-dev/youki/compare/v0.5.1...v0.5.2) - 2025-03-04
### 💪 Improvements
- Support feature subcommand by @musaprg in https://github.com/youki-dev/youki/pull/2837
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/libcgroups/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcgroups"
version = "0.5.2" # MARK: Version
version = "0.5.3" # MARK: Version
description = "Library for cgroup"
license = "Apache-2.0"
repository = "https://github.com/containers/youki"
Expand Down
4 changes: 2 additions & 2 deletions crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcontainer"
version = "0.5.2" # MARK: Version
version = "0.5.3" # MARK: Version
description = "Library for container control"
license = "Apache-2.0"
repository = "https://github.com/containers/youki"
Expand Down Expand Up @@ -41,7 +41,7 @@ oci-spec = { version = "0.7.1", features = ["runtime"] }
once_cell = "1.20.3"
procfs = "0.17.0"
prctl = "1.0.0"
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.2" } # MARK: Version
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.3" } # MARK: Version
libseccomp = { version = "0.3.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/liboci-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liboci-cli"
version = "0.5.2" # MARK: Version
version = "0.5.3" # MARK: Version
description = "Parse command line arguments for OCI container runtimes"
license = "Apache-2.0"
repository = "https://github.com/containers/youki"
Expand Down
8 changes: 4 additions & 4 deletions crates/youki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "youki"
version = "0.5.2" # MARK: Version
version = "0.5.3" # MARK: Version
description = "A container runtime written in Rust"
license = "Apache-2.0"
repository = "https://github.com/containers/youki"
Expand Down Expand Up @@ -30,9 +30,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
[dependencies]
anyhow = "1.0.97"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.2" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.2" } # MARK: Version
liboci-cli = { path = "../liboci-cli", version = "0.5.2" } # MARK: Version
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.3" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.3" } # MARK: Version
liboci-cli = { path = "../liboci-cli", version = "0.5.3" } # MARK: Version
nix = "0.28.0"
pentacle = "1.1.0"
procfs = "0.17.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/user/basic_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Install from the GitHub release as root:

<!--youki release begin-->
```console
# curl -sSfL https://github.com/containers/youki/releases/download/v0.5.2/youki-0.5.2-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
# curl -sSfL https://github.com/containers/youki/releases/download/v0.5.3/youki-0.5.3-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
```
<!--youki release end-->

Expand Down