diff --git a/CHANGELOG.md b/CHANGELOG.md index 33f8a1d..0b600c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.6.0] - 2022-11-05 +### Changed +- **Breaking**: Updated `clap` to version 4 (thanks @msrd0) +- **Breaking**: Bump MSRV to 1.60 (due to the clap update) + +### Removed +- **Breaking**: Remove `FromStr` impls for `args::{ColorSetting, FormatSetting}` (use `clap::ValueEnum` instead). + ## [0.5.2] - 2022-08-14 ### Added - Re-add `--nocapture` as a noop argument [#18](https://github.com/LukasKalbertodt/libtest-mimic/pull/18) (thanks @sunshowers) @@ -83,7 +91,8 @@ Apart from an improved API, changes that motivated the rewrite are marked with - Everything. -[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.2...HEAD +[Unreleased]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.2...v0.6.0 [0.5.2]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/LukasKalbertodt/libtest-mimic/compare/v0.4.1...v0.5.0 diff --git a/Cargo.toml b/Cargo.toml index 21f2570..72ef332 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libtest-mimic" -version = "0.5.2" +version = "0.6.0" authors = ["Lukas Kalbertodt "] edition = "2021" rust-version = "1.60"