diff --git a/CHANGELOG.md b/CHANGELOG.md index 85f967e..d379628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.11.2] - 2024-04-27 + +### Added + +- All public types now implement `Debug` [#119](https://github.com/rust-lang/annotate-snippets-rs/pull/119) + ## [0.11.1] - 2024-03-21 ### Fixes @@ -126,7 +132,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.11.1...HEAD +[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.11.2...HEAD +[0.11.2]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.11.1...0.11.2 [0.11.1]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.11.0...0.11.1 [0.11.0]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.2...0.11.0 [0.10.2]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.1...0.10.2 diff --git a/Cargo.lock b/Cargo.lock index 479ee8c..db244d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "annotate-snippets" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index a9a7c28..5a5d40b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "annotate-snippets" -version = "0.11.1" +version = "0.11.2" edition = "2021" rust-version = "1.73" # MSRV authors = ["Zibi Braniecki "]