diff --git a/.tagpr b/.tagpr index d6ac18c2df..6530e41bd1 100644 --- a/.tagpr +++ b/.tagpr @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ab3e6d170..1faad95f76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index ba1a4bedc7..3b513049f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2006,7 +2006,7 @@ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" [[package]] name = "libcgroups" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "clap", @@ -2031,7 +2031,7 @@ dependencies = [ [[package]] name = "libcontainer" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "caps", @@ -2078,7 +2078,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "liboci-cli" -version = "0.5.2" +version = "0.5.3" dependencies = [ "clap", ] @@ -6059,7 +6059,7 @@ dependencies = [ [[package]] name = "youki" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "caps", diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index f8e245ce72..703220ae34 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -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" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index ada8a60441..da7cb22473 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -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" @@ -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" diff --git a/crates/liboci-cli/Cargo.toml b/crates/liboci-cli/Cargo.toml index df129ee0f5..5c91b90805 100644 --- a/crates/liboci-cli/Cargo.toml +++ b/crates/liboci-cli/Cargo.toml @@ -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" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index 17e5225dcf..ce73c02910 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -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" @@ -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" diff --git a/docs/src/user/basic_setup.md b/docs/src/user/basic_setup.md index 3fa22b2f4c..4d1c51bdad 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.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 ```