Skip to content

Commit c6bedbe

Browse files
authored
chore: prepare tracing-appender 0.2.3 release (tokio-rs#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 (tokio-rs#2323) - **non_blocking**: allow worker thread name to be configured (tokio-rs#2365) - **rolling**: add a builder for constructing `RollingFileAppender`s (tokio-rs#2227) - **rolling**: add `Builder::filename_suffix` parameter (tokio-rs#2225) - **non_blocking**: remove `Sync` bound from writer for `NonBlocking` (tokio-rs#2607) - **non_blocking**: name spawned threads (tokio-rs#2219) ## Fixed - Fixed several documentation typos and issues (tokio-rs#2689, tokio-rs#2375) ## Changed - Increased minimum supported Rust version (MSRV) to 1.63.0+ (tokio-rs#2793) - Updated minimum `tracing-subscriber` version to [0.3.18][subscriber-v0.3.18] (tokio-rs#2790) [subscriber-v0.3.18]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.18
1 parent 8b7a1dd commit c6bedbe

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

tracing-appender/CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# 0.2.3 (November 13, 2023)
2+
3+
This release contains several new features. It also increases the
4+
minimum supported Rust version (MSRV) to Rust 1.63.0.
5+
6+
### Added
7+
8+
- **rolling**: add option to automatically delete old log files ([#2323])
9+
- **non_blocking**: allow worker thread name to be configured ([#2365])
10+
- **rolling**: add a builder for constructing `RollingFileAppender`s ([#2227])
11+
- **rolling**: add `Builder::filename_suffix` parameter ([#2225])
12+
- **non_blocking**: remove `Sync` bound from writer for `NonBlocking` ([#2607])
13+
- **non_blocking**: name spawned threads ([#2219])
14+
15+
### Fixed
16+
17+
- Fixed several documentation typos and issues ([#2689], [#2375])
18+
19+
### Changed
20+
21+
- Increased minimum supported Rust version (MSRV) to 1.63.0+ ([#2793])
22+
- Updated minimum `tracing-subscriber` version to [0.3.18][subscriber-v0.3.18] ([#2790])
23+
24+
[subscriber-v0.3.18]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.18
25+
[#2323]: https://github.com/tokio-rs/tracing/pull/2323
26+
[#2365]: https://github.com/tokio-rs/tracing/pull/2365
27+
[#2227]: https://github.com/tokio-rs/tracing/pull/2227
28+
[#2225]: https://github.com/tokio-rs/tracing/pull/2225
29+
[#2607]: https://github.com/tokio-rs/tracing/pull/2607
30+
[#2219]: https://github.com/tokio-rs/tracing/pull/2219
31+
[#2689]: https://github.com/tokio-rs/tracing/pull/2689
32+
[#2375]: https://github.com/tokio-rs/tracing/pull/2375
33+
[#2793]: https://github.com/tokio-rs/tracing/pull/2793
34+
[#2790]: https://github.com/tokio-rs/tracing/pull/2790
35+
136
# 0.2.2 (March 17, 2022)
237

338
This release fixes a bug in `RollingFileAppender` that could result

tracing-appender/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-appender"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = [
55
"Zeki Sherif <[email protected]>",
66
"Tokio Contributors <[email protected]>"
@@ -28,7 +28,7 @@ thiserror = "1"
2828

2929
[dependencies.tracing-subscriber]
3030
path = "../tracing-subscriber"
31-
version = "0.3.0"
31+
version = "0.3.18"
3232
default-features = false
3333
features = ["fmt", "std"]
3434

0 commit comments

Comments
 (0)