Skip to content

Commit d1d2d79

Browse files
committed
Release 0.2.0
1 parent 73fe5c6 commit d1d2d79

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ This project adheres to [Semantic Versioning](https://semver.org).
66

77
## [Unreleased]
88

9+
## [0.2.0] - 2019-11-02
10+
11+
* Implemented `--package` flag.
12+
13+
* Implemented `--exclude` flag.
14+
15+
* Renamed `--ignore-non-exist-features` flag to `--ignore-unknown-features`.
16+
The old name can be used as an alias, but is deprecated.
17+
918
## [0.1.1] - 2019-11-01
1019

1120
* Fixed some issues on Windows.
@@ -14,6 +23,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
1423

1524
Initial release
1625

17-
[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.1.1...HEAD
26+
[Unreleased]: https://github.com/taiki-e/cargo-hack/compare/v0.2.0...HEAD
27+
[0.2.0]: https://github.com/taiki-e/cargo-hack/compare/v0.1.1...v0.2.0
1828
[0.1.1]: https://github.com/taiki-e/cargo-hack/compare/v0.1.0...v0.1.1
1929
[0.1.0]: https://github.com/taiki-e/cargo-hack/releases/tag/v0.1.0

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-hack"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ To install the current cargo-hack requires Rust 1.36 or later.
7373

7474
This is a workaround for an issue that `cargo` does not support for `--features` with workspace ([rust-lang/cargo#3620], [rust-lang/cargo#4106], [rust-lang/cargo#4463], [rust-lang/cargo#4753], [rust-lang/cargo#5015], [rust-lang/cargo#5364], [rust-lang/cargo#6195]).
7575

76-
This feature was formerly called `--ignore-unknown-features`, but has been renamed. The old name can be used as an alias, but is deprecated.
76+
This feature was formerly called `--ignore-non-exist-features`, but has been renamed. The old name can be used as an alias, but is deprecated.
7777

7878
`cargo-hack` changes the behavior of the following existing flags.
7979

0 commit comments

Comments
 (0)