diff --git a/crates/libcgroups/Cargo.toml b/crates/libcgroups/Cargo.toml index c34dc0322..26965895d 100644 --- a/crates/libcgroups/Cargo.toml +++ b/crates/libcgroups/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcgroups" -version = "0.3.2" # MARK: Version +version = "0.3.3" # 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 9b6fed16d..364a9b058 100644 --- a/crates/libcontainer/Cargo.toml +++ b/crates/libcontainer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcontainer" -version = "0.3.2" # MARK: Version +version = "0.3.3" # 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.4", features = ["runtime"] } once_cell = "1.19.0" procfs = "0.16.0" prctl = "1.0.0" -libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.2" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.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 162c0e0d4..941b5f628 100644 --- a/crates/liboci-cli/Cargo.toml +++ b/crates/liboci-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboci-cli" -version = "0.3.2" # MARK: Version +version = "0.3.3" # 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 fd441142c..f344cb73e 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "youki" -version = "0.3.2" # MARK: Version +version = "0.3.3" # 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.3.2" } # MARK: Version -libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.2" } # MARK: Version -liboci-cli = { path = "../liboci-cli", version = "0.3.2" } # MARK: Version +libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.3" } # MARK: Version +libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.3" } # MARK: Version +liboci-cli = { path = "../liboci-cli", version = "0.3.3" } # MARK: Version nix = "0.27.1" 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 128832922..36ae20f4e 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.3.2/youki-0.3.2-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki +# curl -sSfL https://github.com/containers/youki/releases/download/v0.3.3/youki-0.3.3-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki ```