From c26f56ca7ba9e9e88e559072265241b8c57149b1 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 24 Sep 2022 13:47:37 +0900 Subject: [PATCH] Release 0.5.20 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebdb59fd..7fbfb943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.5.20] - 2022-09-24 + - Support multiple `--target` options. This uses cargo 1.64's [multi-target builds](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html#cargo-improvements-workspace-inheritance-and-multi-target-builds) on cargo 1.64+, otherwise fallback to perform command per targets. ([#168](https://github.com/taiki-e/cargo-hack/pull/168)) ## [0.5.19] - 2022-09-22 @@ -308,7 +310,8 @@ See [#89](https://github.com/taiki-e/cargo-hack/pull/89) for more. Initial release -[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.5.19...HEAD +[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.5.20...HEAD +[0.5.20]: https://github.com/taiki-e/cargo-hack/compare/v0.5.19...v0.5.20 [0.5.19]: https://github.com/taiki-e/cargo-hack/compare/v0.5.18...v0.5.19 [0.5.18]: https://github.com/taiki-e/cargo-hack/compare/v0.5.17...v0.5.18 [0.5.17]: https://github.com/taiki-e/cargo-hack/compare/v0.5.16...v0.5.17 diff --git a/Cargo.toml b/Cargo.toml index f1d6978a..9e662147 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-hack" -version = "0.5.19" +version = "0.5.20" edition = "2021" rust-version = "1.56" license = "Apache-2.0 OR MIT"