1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-06 15:46:17 +02:00

Release v0.3.2 (#2664)

Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
Toru Komatsu 2024-02-01 05:53:30 +09:00 committed by GitHub
parent 0f75f49f81
commit b9f27e487f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "libcgroups"
version = "0.3.1" # MARK: Version
version = "0.3.2" # MARK: Version
description = "Library for cgroup"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"

View File

@ -1,6 +1,6 @@
[package]
name = "libcontainer"
version = "0.3.1" # MARK: Version
version = "0.3.2" # 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.1" } # MARK: Version
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.2" } # MARK: Version
libseccomp = { version = "0.3.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View File

@ -1,6 +1,6 @@
[package]
name = "liboci-cli"
version = "0.3.1" # MARK: Version
version = "0.3.2" # MARK: Version
description = "Parse command line arguments for OCI container runtimes"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"

View File

@ -1,6 +1,6 @@
[package]
name = "youki"
version = "0.3.1" # MARK: Version
version = "0.3.2" # 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.79"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.1" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.1" } # MARK: Version
liboci-cli = { path = "../liboci-cli", version = "0.3.1" } # MARK: Version
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
nix = "0.27.1"
once_cell = "1.19.0"
pentacle = "1.0.0"

View File

@ -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.3.1/youki-0.3.1-$(uname -m)-musl.tar.gz | tar -xzvC /usr/bin/ youki
# 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
```
<!--youki release end-->