diff --git a/CHANGELOG.md b/CHANGELOG.md index b4c19da6..f40e40b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.7.2] - 2020-07-28 ### Added - [PR#227](https://github.com/EmbarkStudios/cargo-deny/pull/227) Added a new `bans.wildcards` check to lint for version requirements of `"*"`, which can happen when using local or patched crates that aren't published to a registry. Thanks [@khodzha](https://github.com/khodzha)! @@ -195,7 +196,8 @@ Now each license has to be explicitly approved, either by listing them in `licen - Initial implementation release -[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.7.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/cargo-deny/compare/0.7.2...HEAD +[0.7.2]: https://github.com/EmbarkStudios/cargo-deny/compare/0.7.1...0.7.2 [0.7.1]: https://github.com/EmbarkStudios/cargo-deny/compare/0.7.0...0.7.1 [0.7.0]: https://github.com/EmbarkStudios/cargo-deny/compare/0.6.8...0.7.0 [0.6.8]: https://github.com/EmbarkStudios/cargo-deny/compare/0.6.7...0.6.8 diff --git a/Cargo.lock b/Cargo.lock index e720fa5f..1ea0031e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,7 +121,7 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" [[package]] name = "cargo-deny" -version = "0.7.1" +version = "0.7.2" dependencies = [ "ansi_term 0.12.1", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 9a4053b8..0a574394 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cargo-deny" description = "Cargo plugin to help you manage large dependency graphs" repository = "https://github.com/EmbarkStudios/cargo-deny" -version = "0.7.1" +version = "0.7.2" authors = ["Embark ", "Jake Shadle "] edition = "2018" license = "MIT OR Apache-2.0"