From 12109c20deaf1021cda7ebef4690ffd9c40c169b Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Sat, 27 Apr 2024 11:53:41 -0600 Subject: [PATCH 1/2] chore: Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85f967e2..62e20e2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +### 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 From c8d76d6d502841cf5014cb80c6b3581d1c68c23e Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Sat, 27 Apr 2024 11:55:28 -0600 Subject: [PATCH 2/2] chore: Release annotate-snippets version 0.11.2 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e20e2c..d379628b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ 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) @@ -130,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 479ee8cf..db244d14 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 a9a7c284..5a5d40b2 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 "]