From 2f5ca7d6a32eecd5b93f821cf2d53971be40608b Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 4 Jan 2024 15:21:36 -0700 Subject: [PATCH 1/2] chore: Update CHANGELOG.md for `0.10.1` --- CHANGELOG.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e55c8d7..da4b3293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.10.1] — January 4, 2024 + +### Fixed + + - Match `rustc`'s colors [#73](https://github.com/rust-lang/annotate-snippets-rs/pull/73) + - Allow highlighting one past the end of `source` [#74](https://github.com/rust-lang/annotate-snippets-rs/pull/74) + +### Compatibility + +- Set the minimum supported Rust version to `1.73.0` [#71](https://github.com/rust-lang/annotate-snippets-rs/pull/71) + + ## [0.10.0] - December 12, 2023 ### Added @@ -73,7 +85,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.0...HEAD +[Unreleased]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.10.1...HEAD +[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 [0.9.1]: https://github.com/rust-lang/annotate-snippets-rs/compare/0.9.0...0.9.1 From fb16a7adb1c99bc570c1d40d4215b411b30e2122 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 4 Jan 2024 15:22:01 -0700 Subject: [PATCH 2/2] chore: Update version to `0.10.1` --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 149d5c5e..221841ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "annotate-snippets" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anstyle", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 2cdd75e2..42fe5637 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "annotate-snippets" -version = "0.10.0" +version = "0.10.1" edition = "2021" rust-version = "1.73" # MSRV authors = ["Zibi Braniecki "]