From 8b7a1dde69797b33ecfa20da71e72eb5e61f0b25 Mon Sep 17 00:00:00 2001 From: David Barsky Date: Mon, 13 Nov 2023 12:06:05 -0500 Subject: [PATCH] chore: prepare tracing-subscriber 0.3.18 release (#2789) # 0.3.18 (November 13, 2023) This release of `tracing-subscriber` adds support for the [`NO_COLOR`] environment variable (an informal standard to disable emitting ANSI color escape codes) in `fmt::Layer`, reintroduces support for the [`chrono`] crate, and increases the minimum supported Rust version (MSRV) to Rust 1.63.0. It also introduces several minor API improvements. ### Added - **chrono**: Add [`chrono`] implementations of `FormatTime` ([#2690]) - **subscriber**: Add support for the [`NO_COLOR`] environment variable in `fmt::Layer` ([#2647]) - **fmt**: make `format::Writer::new()` public ([#2680]) - **filter**: Implement `layer::Filter` for `Option` ([#2407]) ### Changed - **log**: bump version of `tracing-log` to 0.2 ([#2772]) - Increased minimum supported Rust version (MSRV) to 1.63.0+. [`chrono`]: https://github.com/chronotope/chrono [`NO_COLOR`]: https://no-color.org/ [#2690]: https://github.com/tokio-rs/tracing/pull/2690 [#2647]: https://github.com/tokio-rs/tracing/pull/2647 [#2680]: https://github.com/tokio-rs/tracing/pull/2680 [#2407]: https://github.com/tokio-rs/tracing/pull/2407 [#2772]: https://github.com/tokio-rs/tracing/pull/2772 Thanks to @shayne-fletcher, @dmlary, @kaifastromai, and @jsgf for contributing! --- tracing-subscriber/CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ tracing-subscriber/Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/tracing-subscriber/CHANGELOG.md b/tracing-subscriber/CHANGELOG.md index 9a33e55e23..a8894b9ea2 100644 --- a/tracing-subscriber/CHANGELOG.md +++ b/tracing-subscriber/CHANGELOG.md @@ -1,3 +1,35 @@ +# 0.3.18 (November 13, 2023) + +This release of `tracing-subscriber` adds support for the [`NO_COLOR`] environment +variable (an informal standard to disable emitting ANSI color escape codes) in +`fmt::Layer`, reintroduces support for the [`chrono`] crate, and increases the +minimum supported Rust version (MSRV) to Rust 1.63.0. + +It also introduces several minor API improvements. + +### Added + +- **chrono**: Add [`chrono`] implementations of `FormatTime` ([#2690]) +- **subscriber**: Add support for the [`NO_COLOR`] environment variable in +`fmt::Layer` ([#2647]) +- **fmt**: make `format::Writer::new()` public ([#2680]) +- **filter**: Implement `layer::Filter` for `Option` ([#2407]) + +### Changed + +- **log**: bump version of `tracing-log` to 0.2 ([#2772]) +- Increased minimum supported Rust version (MSRV) to 1.63.0+. + +[`chrono`]: https://github.com/chronotope/chrono +[`NO_COLOR`]: https://no-color.org/ +[#2690]: https://github.com/tokio-rs/tracing/pull/2690 +[#2647]: https://github.com/tokio-rs/tracing/pull/2647 +[#2680]: https://github.com/tokio-rs/tracing/pull/2680 +[#2407]: https://github.com/tokio-rs/tracing/pull/2407 +[#2772]: https://github.com/tokio-rs/tracing/pull/2772 + +Thanks to @shayne-fletcher, @dmlary, @kaifastromai, and @jsgf for contributing! + # 0.3.17 (April 21, 2023) This release of `tracing-subscriber` fixes a build error when using `env-filter` diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index 49580e4271..807880b8cd 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-subscriber" -version = "0.3.17" +version = "0.3.18" authors = [ "Eliza Weisman ", "David Barsky ",