diff --git a/.tagpr b/.tagpr index 0148217bc..b5bd433c5 100644 --- a/.tagpr +++ b/.tagpr @@ -2,6 +2,6 @@ vPrefix = true releaseBranch = main versionFile = - - command = just version-up 0.5.1 + command = just version-up 0.5.2 release = false changelog = true diff --git a/CHANGELOG.md b/CHANGELOG.md index 48fdb3fff..9410a787a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v0.5.1](https://github.com/youki-dev/youki/compare/v0.5.0...v0.5.1) - 2025-01-06 +### ๐Ÿ› Bug Fixes +- Fix building the wasmedge feature by @utam0k in https://github.com/youki-dev/youki/pull/3041 +### ๐Ÿงช Test improvements and Misc Fixes +- Do `cargo check` before releasing a new version by @utam0k in https://github.com/youki-dev/youki/pull/3039 + ## [v0.5.0](https://github.com/youki-dev/youki/compare/v0.4.1...v0.5.0) - 2025-01-02 ### ๐Ÿ’ช Improvements - libcontainer: support set stdios for container by @abel-von in https://github.com/youki-dev/youki/pull/2961 diff --git a/Cargo.lock b/Cargo.lock index 16bb75fa3..bbf5292bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1994,7 +1994,7 @@ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "libcgroups" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "clap", @@ -2019,7 +2019,7 @@ dependencies = [ [[package]] name = "libcontainer" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "caps", @@ -2066,7 +2066,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "liboci-cli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "clap", ] @@ -5944,7 +5944,7 @@ dependencies = [ [[package]] name = "youki" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "caps", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index 0461da868..5f96b1e2a 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcgroups" -version = "0.5.0" # MARK: Version +version = "0.5.1" # MARK: Version description = "Library for cgroup" license = "Apache-2.0" repository = "https://github.com/containers/youki" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index d7ca6b185..ff73ab0a6 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcontainer" -version = "0.5.0" # MARK: Version +version = "0.5.1" # MARK: Version description = "Library for container control" license = "Apache-2.0" repository = "https://github.com/containers/youki" @@ -41,7 +41,7 @@ oci-spec = { version = "0.7.1", features = ["runtime"] } once_cell = "1.20.2" procfs = "0.17.0" prctl = "1.0.0" -libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.1" } # MARK: Version libseccomp = { version = "0.3.0", optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/crates/liboci-cli/Cargo.toml b/crates/liboci-cli/Cargo.toml index 1b0795355..61e87e74d 100644 --- a/crates/liboci-cli/Cargo.toml +++ b/crates/liboci-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboci-cli" -version = "0.5.0" # MARK: Version +version = "0.5.1" # MARK: Version description = "Parse command line arguments for OCI container runtimes" license = "Apache-2.0" repository = "https://github.com/containers/youki" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index d8358bfd2..7b15c818e 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youki" -version = "0.5.0" # MARK: Version +version = "0.5.1" # MARK: Version description = "A container runtime written in Rust" license = "Apache-2.0" repository = "https://github.com/containers/youki" @@ -30,9 +30,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con [dependencies] anyhow = "1.0.95" chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] } -libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version -libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.0" } # MARK: Version -liboci-cli = { path = "../liboci-cli", version = "0.5.0" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.1" } # MARK: Version +libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.1" } # MARK: Version +liboci-cli = { path = "../liboci-cli", version = "0.5.1" } # MARK: Version nix = "0.28.0" pentacle = "1.1.0" procfs = "0.17.0" diff --git a/docs/src/user/basic_setup.md b/docs/src/user/basic_setup.md index 8f6338ebe..0c9dcdbee 100644 --- a/docs/src/user/basic_setup.md +++ b/docs/src/user/basic_setup.md @@ -83,7 +83,7 @@ Install from the GitHub release as root: ```console -# 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 +# 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 ```