Skip to content

Commit 315e98f

Browse files
[tagpr] prepare for the next release
1 parent aeb6525 commit 315e98f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.tagpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
vPrefix = true
33
releaseBranch = main
44
versionFile = .tagpr
5-
command = just version-up 0.5.0
5+
command = just version-up 0.5.1
66
release = false
77
changelog = true

crates/libcgroups/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcgroups"
3-
version = "0.4.1" # MARK: Version
3+
version = "0.5.0" # MARK: Version
44
description = "Library for cgroup"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"

crates/libcontainer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcontainer"
3-
version = "0.4.1" # MARK: Version
3+
version = "0.5.0" # MARK: Version
44
description = "Library for container control"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"
@@ -41,7 +41,7 @@ oci-spec = { version = "0.7.1", features = ["runtime"] }
4141
once_cell = "1.20.2"
4242
procfs = "0.17.0"
4343
prctl = "1.0.0"
44-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version
44+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version
4545
libseccomp = { version = "0.3.0", optional = true }
4646
serde = { version = "1.0", features = ["derive"] }
4747
serde_json = "1.0"

crates/liboci-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "liboci-cli"
3-
version = "0.4.1" # MARK: Version
3+
version = "0.5.0" # MARK: Version
44
description = "Parse command line arguments for OCI container runtimes"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"

crates/youki/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "youki"
3-
version = "0.4.1" # MARK: Version
3+
version = "0.5.0" # MARK: Version
44
description = "A container runtime written in Rust"
55
license = "Apache-2.0"
66
repository = "https://github.com/containers/youki"
@@ -30,9 +30,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
3030
[dependencies]
3131
anyhow = "1.0.95"
3232
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
33-
libcgroups = { path = "../libcgroups", default-features = false, version = "0.4.1" } # MARK: Version
34-
libcontainer = { path = "../libcontainer", default-features = false, version = "0.4.1" } # MARK: Version
35-
liboci-cli = { path = "../liboci-cli", version = "0.4.1" } # MARK: Version
33+
libcgroups = { path = "../libcgroups", default-features = false, version = "0.5.0" } # MARK: Version
34+
libcontainer = { path = "../libcontainer", default-features = false, version = "0.5.0" } # MARK: Version
35+
liboci-cli = { path = "../liboci-cli", version = "0.5.0" } # MARK: Version
3636
nix = "0.28.0"
3737
pentacle = "1.1.0"
3838
procfs = "0.17.0"

docs/src/user/basic_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Install from the GitHub release as root:
8383

8484
<!--youki release begin-->
8585
```console
86-
# 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
86+
# 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
8787
```
8888
<!--youki release end-->
8989

0 commit comments

Comments
 (0)