From c6bedbe2725830c1e78cbcdb9168de69c98e42fc Mon Sep 17 00:00:00 2001 From: David Barsky Date: Mon, 13 Nov 2023 14:06:46 -0500 Subject: [PATCH] chore: prepare tracing-appender 0.2.3 release (#2790) # 0.2.3 (November 13, 2023) This release contains several new features. It also increases the minimum supported Rust version (MSRV) to Rust 1.63.0. ## Added - **rolling**: add option to automatically delete old log files (#2323) - **non_blocking**: allow worker thread name to be configured (#2365) - **rolling**: add a builder for constructing `RollingFileAppender`s (#2227) - **rolling**: add `Builder::filename_suffix` parameter (#2225) - **non_blocking**: remove `Sync` bound from writer for `NonBlocking` (#2607) - **non_blocking**: name spawned threads (#2219) ## Fixed - Fixed several documentation typos and issues (#2689, #2375) ## Changed - Increased minimum supported Rust version (MSRV) to 1.63.0+ (#2793) - Updated minimum `tracing-subscriber` version to [0.3.18][subscriber-v0.3.18] (#2790) [subscriber-v0.3.18]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.18 --- tracing-appender/CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ tracing-appender/Cargo.toml | 4 ++-- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/tracing-appender/CHANGELOG.md b/tracing-appender/CHANGELOG.md index c8c3290c71..5c830c375c 100644 --- a/tracing-appender/CHANGELOG.md +++ b/tracing-appender/CHANGELOG.md @@ -1,3 +1,38 @@ +# 0.2.3 (November 13, 2023) + +This release contains several new features. It also increases the +minimum supported Rust version (MSRV) to Rust 1.63.0. + +### Added + +- **rolling**: add option to automatically delete old log files ([#2323]) +- **non_blocking**: allow worker thread name to be configured ([#2365]) +- **rolling**: add a builder for constructing `RollingFileAppender`s ([#2227]) +- **rolling**: add `Builder::filename_suffix` parameter ([#2225]) +- **non_blocking**: remove `Sync` bound from writer for `NonBlocking` ([#2607]) +- **non_blocking**: name spawned threads ([#2219]) + +### Fixed + +- Fixed several documentation typos and issues ([#2689], [#2375]) + +### Changed + +- Increased minimum supported Rust version (MSRV) to 1.63.0+ ([#2793]) +- Updated minimum `tracing-subscriber` version to [0.3.18][subscriber-v0.3.18] ([#2790]) + +[subscriber-v0.3.18]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.18 +[#2323]: https://github.com/tokio-rs/tracing/pull/2323 +[#2365]: https://github.com/tokio-rs/tracing/pull/2365 +[#2227]: https://github.com/tokio-rs/tracing/pull/2227 +[#2225]: https://github.com/tokio-rs/tracing/pull/2225 +[#2607]: https://github.com/tokio-rs/tracing/pull/2607 +[#2219]: https://github.com/tokio-rs/tracing/pull/2219 +[#2689]: https://github.com/tokio-rs/tracing/pull/2689 +[#2375]: https://github.com/tokio-rs/tracing/pull/2375 +[#2793]: https://github.com/tokio-rs/tracing/pull/2793 +[#2790]: https://github.com/tokio-rs/tracing/pull/2790 + # 0.2.2 (March 17, 2022) This release fixes a bug in `RollingFileAppender` that could result diff --git a/tracing-appender/Cargo.toml b/tracing-appender/Cargo.toml index 6dda55a3db..e696f89f9b 100644 --- a/tracing-appender/Cargo.toml +++ b/tracing-appender/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-appender" -version = "0.2.2" +version = "0.2.3" authors = [ "Zeki Sherif ", "Tokio Contributors " @@ -28,7 +28,7 @@ thiserror = "1" [dependencies.tracing-subscriber] path = "../tracing-subscriber" -version = "0.3.0" +version = "0.3.18" default-features = false features = ["fmt", "std"]