From 6dab14f3c1014c71975d2e92e905ee55b87f6cf5 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 29 Feb 2024 14:54:00 -0700 Subject: [PATCH 1/2] chore: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b660519..f2ffa6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + ## [Unreleased] - ReleaseDate +### 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 From 9c373d4ab2545effe772169c502f6a1bcf019113 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 29 Feb 2024 14:56:51 -0700 Subject: [PATCH 2/2] chore: Release annotate-snippets version 0.10.2 --- CHANGELOG.md | 7 +++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2ffa6f..0f46022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) 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 @@ -91,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 "]