Skip to content

Commit

Permalink
Release for v0.3.1 (#2570)
Browse files Browse the repository at this point in the history
* [tagpr] prepare for the next release

* [tagpr] update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 17, 2023
1 parent 4533843 commit 2680bcb
Show file tree
Hide file tree
Showing 6 changed files with 1,757 additions and 12 deletions.
1,745 changes: 1,745 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/libcgroups/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcgroups"
version = "0.3.0" # MARK: Version
version = "0.3.1" # MARK: Version
description = "Library for cgroup"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
Expand Down
4 changes: 2 additions & 2 deletions crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcontainer"
version = "0.3.0" # MARK: Version
version = "0.3.1" # MARK: Version
description = "Library for container control"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
Expand Down Expand Up @@ -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.0" } # MARK: Version
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.1" } # MARK: Version
libseccomp = { version = "0.3.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/liboci-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "liboci-cli"
version = "0.3.0" # MARK: Version
version = "0.3.1" # MARK: Version
description = "Parse command line arguments for OCI container runtimes"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
Expand Down
8 changes: 4 additions & 4 deletions crates/youki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "youki"
version = "0.3.0" # MARK: Version
version = "0.3.1" # MARK: Version
description = "A container runtime written in Rust"
license-file = "../../LICENSE"
repository = "https://github.com/containers/youki"
Expand Down Expand Up @@ -29,9 +29,9 @@ features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-con
[dependencies]
anyhow = "1.0.75"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.0" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.0" } # MARK: Version
liboci-cli = { path = "../liboci-cli", version = "0.3.0" } # MARK: Version
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
nix = "0.27.1"
once_cell = "1.19.0"
pentacle = "1.0.0"
Expand Down
8 changes: 4 additions & 4 deletions docs/src/user/basic_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ Note that this way also requires the aforementioned installation.

<!--youki release begin-->
```console
$ wget -qO youki_0_3_0_linux.tar.gz https://github.com/containers/youki/releases/download/v0.3.0/youki_0_3_0_linux.tar.gz
$ tar -zxvf youki_0_3_0_linux.tar.gz --strip-components=1
$ wget -qO youki-0.3.1.tar.gz https://github.com/containers/youki/releases/download/v0.3.1/youki-0.3.1-$(uname -m).tar.gz
$ tar -zxvf youki-0.3.1.tar.gz youki
# Maybe you need root privileges.
$ mv youki-0.3.0/youki /usr/local/bin/youki
$ rm -rf youki_0_3_0_linux.tar.gz youki-0_3_0
$ mv youki /usr/local/bin/youki
$ rm youki-0.3.1.tar.gz
```
<!--youki release end-->

Expand Down

0 comments on commit 2680bcb

Please sign in to comment.