diff --git a/CHANGELOG.md b/CHANGELOG.md index 160fc84d..c8f0abcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,16 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.3.1] - 2019-11-20 + +* [cargo-hack can now handle ctrl-c signal properly.][20] Previously there was an issue with interoperability with `--no-dev-deps` flag. + +[20]: https://github.com/taiki-e/cargo-hack/pull/20 + ## [0.3.0] - 2019-11-13 * [cargo-hack now works on windows.][17] -* [Fixed issue that when `--all`(`--workspace`) and `--package` flags are run in subcrate, the command does not apply to other crates in the workspace.][17] +* [Fixed an issue that when `--all`(`--workspace`) and `--package` flags are run in subcrate, the command does not apply to other crates in the workspace.][17] * [Banned `--no-dev-deps` flag with builds that require dev-dependencies.][16] * [cargo-hack is no longer does not generate temporary backup files.][14] @@ -41,7 +47,8 @@ This project adheres to [Semantic Versioning](https://semver.org). Initial release -[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/taiki-e/cargo-hack/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/taiki-e/cargo-hack/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/taiki-e/cargo-hack/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/taiki-e/cargo-hack/compare/v0.1.1...v0.2.0 diff --git a/Cargo.lock b/Cargo.lock index a6ed597e..d8cc24bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,7 +27,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cargo-hack" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)", "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index b95cc46a..b4c33c27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-hack" -version = "0.3.0" +version = "0.3.1" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT"