diff --git a/CHANGELOG.md b/CHANGELOG.md index d9740ad7..a0c4872a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# [0.7.0] - 2021-06-15 + +* Added command (`--verify`) to verify the MSRV, if defined with the 'package.metadata.msrv' key in the 'Cargo.toml' + +[0.7.0]: https://github.com/foresterre/cargo-msrv/compare/v0.6.0...v0.7.0 + # [0.6.0] - 2021-05-27 * Added option (`--output-format`) to output the status of the program in a machine-readable format to stdout diff --git a/Cargo.lock b/Cargo.lock index df9f80b8..6da6ed1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -61,7 +61,7 @@ checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" [[package]] name = "cargo-msrv" -version = "0.6.0" +version = "0.7.0" dependencies = [ "clap", "console", diff --git a/Cargo.toml b/Cargo.toml index bb7f57a1..96a8e49d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-msrv" -version = "0.6.0" +version = "0.7.0" authors = ["Martijn Gribnau "] description = "Find your minimum supported Rust version (MSRV)!" license = "Apache-2.0/MIT"