Skip to content

Commit

Permalink
Merge pull request #2896 from containers/tagpr-from-v0.4.0
Browse files Browse the repository at this point in the history
Release for v0.4.1
  • Loading branch information
YJDoc2 committed Sep 2, 2024
2 parents 4163318 + b42a940 commit ea96160
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .tagpr
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
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.4.1" # MARK: Version
version = "0.4.0" # 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.4.1" # MARK: Version
version = "0.4.0" # 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.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"
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.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"
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.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"
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/user/basic_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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
```
<!--youki release end-->

Expand Down

0 comments on commit ea96160

Please sign in to comment.