diff --git a/CHANGELOG.md b/CHANGELOG.md index b660519..0f46022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate + +## [0.10.2] - 2024-02-29 + +### Added + +- Added `testing-colors` feature to remove platform-specific colors when testing + [#82](https://github.com/rust-lang/annotate-snippets-rs/pull/82) + ## [0.10.1] - 2024-01-04 ### Fixed @@ -85,7 +93,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Update the syntax to Rust 2018 idioms. (#4) -[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.1...HEAD +[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.2...HEAD +[0.10.2]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.1...0.10.2 [0.10.1]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.0...0.10.1 [0.10.0]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.9.2...0.10.0 [0.9.2]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.9.1...0.9.2 diff --git a/Cargo.lock b/Cargo.lock index 6261065..86766fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "annotate-snippets" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anstyle", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 650d8eb..05a3482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "annotate-snippets" -version = "0.10.1" +version = "0.10.2" edition = "2021" rust-version = "1.73" # MSRV authors = ["Zibi Braniecki "]