From d27d4f10687dbf1643434b64d2a7411ff32a371a Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 21 Apr 2023 18:56:59 -0700 Subject: [PATCH] subscriber: prepare to release v0.3.17 (#2571) # 0.3.17 (April 21, 2023) This release of `tracing-subscriber` fixes a build error when using `env-filter` with recent versions of the `regex` crate. It also introduces several minor API improvements. ### Fixed - **env-filter**: Add "unicode-case" and "unicode-perl" to the `regex` dependency, fixing a build error with recent versions of `regex` (#2566) - A number of minor documentation typos and other fixes (#2384, #2378, #2368, #2548) ### Added - **filter**: Add `fmt::Display` impl for `filter::Targets` (#2343) - **fmt**: Made `with_ansi(false)` no longer require the "ansi" feature, so that ANSI formatting escapes can be disabled without requiring ANSI-specific dependencies (#2532) ### Changed - **fmt**: Dim targets in the `Compact` formatter, matching the default formatter (#2409) Thanks to @keepsimple1, @andrewhalle, @LeoniePhiline, @LukeMathWalker, @howardjohn, @daxpedda, and @dbidwell94 for contributing to this release! --- tracing-subscriber/CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++ tracing-subscriber/Cargo.toml | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/tracing-subscriber/CHANGELOG.md b/tracing-subscriber/CHANGELOG.md index 193a8208e..6da9eb5f8 100644 --- a/tracing-subscriber/CHANGELOG.md +++ b/tracing-subscriber/CHANGELOG.md @@ -1,3 +1,40 @@ +# 0.3.17 (April 21, 2023) + +This release of `tracing-subscriber` fixes a build error when using `env-filter` +with recent versions of the `regex` crate. It also introduces several minor API +improvements. + +### Fixed + +- **env-filter**: Add "unicode-case" and "unicode-perl" to the `regex` + dependency, fixing a build error with recent versions of `regex` ([#2566]) +- A number of minor documentation typos and other fixes ([#2384], [#2378], + [#2368], [#2548]) + +### Added + +- **filter**: Add `fmt::Display` impl for `filter::Targets` ([#2343]) +- **fmt**: Made `with_ansi(false)` no longer require the "ansi" feature, so that + ANSI formatting escapes can be disabled without requiring ANSI-specific + dependencies ([#2532]) + +### Changed + +- **fmt**: Dim targets in the `Compact` formatter, matching the default + formatter ([#2409]) + +Thanks to @keepsimple1, @andrewhalle, @LeoniePhiline, @LukeMathWalker, +@howardjohn, @daxpedda, and @dbidwell94 for contributing to this release! + +[#2566]: https://github.com/tokio-rs/tracing/pull/2566 +[#2384]: https://github.com/tokio-rs/tracing/pull/2384 +[#2378]: https://github.com/tokio-rs/tracing/pull/2378 +[#2368]: https://github.com/tokio-rs/tracing/pull/2368 +[#2548]: https://github.com/tokio-rs/tracing/pull/2548 +[#2343]: https://github.com/tokio-rs/tracing/pull/2343 +[#2532]: https://github.com/tokio-rs/tracing/pull/2532 +[#2409]: https://github.com/tokio-rs/tracing/pull/2409 + # 0.3.16 (October 6, 2022) This release of `tracing-subscriber` fixes a regression introduced in diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index 9abf24e38..591ef0743 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-subscriber" -version = "0.3.16" +version = "0.3.17" authors = [ "Eliza Weisman ", "David Barsky ",