From 830eec47e0884ceb13b2a117548b6398ab0a1398 Mon Sep 17 00:00:00 2001 From: David Barsky Date: Mon, 6 Nov 2023 16:12:09 -0500 Subject: [PATCH] chore: prepare tracing-subscriber 0.3.18 release --- tracing-subscriber/CHANGELOG.md | 26 ++++++++++++++++++++++++++ tracing-subscriber/Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/tracing-subscriber/CHANGELOG.md b/tracing-subscriber/CHANGELOG.md index 9a33e55e23..2150517275 100644 --- a/tracing-subscriber/CHANGELOG.md +++ b/tracing-subscriber/CHANGELOG.md @@ -1,3 +1,29 @@ +# 0.3.18 (November 6, 2023) + +This release of `tracing-subscriber` adds support for `NO_COLOR` in +`fmt::Layer` and reintroduces support for the `chrono` crate. +It also introduces several minor API improvements. + + +### Added + +- **chrono**: Add `chrono` implementations of `FormatTime` ([#2690]) +- **subscriber**: support `NO_COLOR` in `fmt::Layer` ([#2647]) + +### Changed + +- **fmt**: make `format::Writer::new()` public ([#2680]) +- **subscriber**: bump version of `tracing-log` to 0.2 ([#2772]) +- **filter**: Implement `layer::Filter` for `Option` ([#2407]) + +[#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 1473e7a6b8..69e8a5ce8d 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 ",