diff --git a/.tagpr b/.tagpr index 449440770..994afd208 100644 --- a/.tagpr +++ b/.tagpr @@ -2,6 +2,6 @@ vPrefix = true releaseBranch = main versionFile = .tagpr - command = just version-up 0.4.0 + command = just version-up 0.4.1 release = false changelog = true diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf48af28..0f02715bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.4.1](https://github.com/containers/youki/compare/v0.4.0...v0.4.1) - 2024-09-02 +### 🧪 Test improvements and Misc Fixes +- prepare for version 0.4.1 by @YJDoc2 in https://github.com/containers/youki/pull/2897 + ## [v0.4.0](https://github.com/containers/youki/compare/v0.3.3...v0.4.0) - 2024-08-23 ### 💪 Improvements - Export max_usage in cgroups v2 mode by @HeRaNO in https://github.com/containers/youki/pull/2802 diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index f07325903..9aaeabed7 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcgroups" -version = "0.4.1" # MARK: Version +version = "0.4.0" # MARK: Version description = "Library for cgroup" license-file = "../../LICENSE" repository = "https://github.com/containers/youki" diff --git a/crates/libcontainer/Cargo.toml b/crates/libcontainer/Cargo.toml index e2e67e572..1d36175b9 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcontainer" -version = "0.4.1" # MARK: Version +version = "0.4.0" # MARK: Version description = "Library for container control" license-file = "../../LICENSE" repository = "https://github.com/containers/youki" @@ -43,7 +43,7 @@ oci-spec = { version = "0.6.8", features = ["runtime"] } once_cell = "1.19.0" procfs = "0.16.0" prctl = "1.0.0" -libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.0" } # 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 99fcb8c99..8a5c79a4f 100644 --- a/crates/liboci-cli/Cargo.toml +++ b/crates/liboci-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboci-cli" -version = "0.4.1" # MARK: Version +version = "0.4.0" # MARK: Version description = "Parse command line arguments for OCI container runtimes" license-file = "../../LICENSE" repository = "https://github.com/containers/youki" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index 4a3fd83a7..5725ec3ad 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youki" -version = "0.4.1" # MARK: Version +version = "0.4.0" # MARK: Version description = "A container runtime written in Rust" license-file = "../../LICENSE" repository = "https://github.com/containers/youki" @@ -29,9 +29,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con [dependencies] anyhow = "1.0.86" chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] } -libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version -libcontainer = { path = "../libcontainer", default-features = false, version = "0.4.1" } # MARK: Version -liboci-cli = { path = "../liboci-cli", version = "0.4.1" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.0" } # MARK: Version +libcontainer = { path = "../libcontainer", default-features = false, version = "0.4.0" } # MARK: Version +liboci-cli = { path = "../liboci-cli", version = "0.4.0" } # MARK: Version nix = "0.28.0" once_cell = "1.19.0" pentacle = "1.0.0" diff --git a/docs/src/user/basic_setup.md b/docs/src/user/basic_setup.md index 96359345b..e400cd52d 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.4.1/youki-0.4.1-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki +# curl -sSfL https://github.com/containers/youki/releases/download/v0.4.0/youki-0.4.0-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki ```