Skip to content

Commit 8b7a1dd

Browse files
authored
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<Filter>` ([#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]: #2690 [#2647]: #2647 [#2680]: #2680 [#2407]: #2407 [#2772]: #2772 Thanks to @shayne-fletcher, @dmlary, @kaifastromai, and @jsgf for contributing!
1 parent befb4de commit 8b7a1dd

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

tracing-subscriber/CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# 0.3.18 (November 13, 2023)
2+
3+
This release of `tracing-subscriber` adds support for the [`NO_COLOR`] environment
4+
variable (an informal standard to disable emitting ANSI color escape codes) in
5+
`fmt::Layer`, reintroduces support for the [`chrono`] crate, and increases the
6+
minimum supported Rust version (MSRV) to Rust 1.63.0.
7+
8+
It also introduces several minor API improvements.
9+
10+
### Added
11+
12+
- **chrono**: Add [`chrono`] implementations of `FormatTime` ([#2690])
13+
- **subscriber**: Add support for the [`NO_COLOR`] environment variable in
14+
`fmt::Layer` ([#2647])
15+
- **fmt**: make `format::Writer::new()` public ([#2680])
16+
- **filter**: Implement `layer::Filter` for `Option<Filter>` ([#2407])
17+
18+
### Changed
19+
20+
- **log**: bump version of `tracing-log` to 0.2 ([#2772])
21+
- Increased minimum supported Rust version (MSRV) to 1.63.0+.
22+
23+
[`chrono`]: https://github.com/chronotope/chrono
24+
[`NO_COLOR`]: https://no-color.org/
25+
[#2690]: https://github.com/tokio-rs/tracing/pull/2690
26+
[#2647]: https://github.com/tokio-rs/tracing/pull/2647
27+
[#2680]: https://github.com/tokio-rs/tracing/pull/2680
28+
[#2407]: https://github.com/tokio-rs/tracing/pull/2407
29+
[#2772]: https://github.com/tokio-rs/tracing/pull/2772
30+
31+
Thanks to @shayne-fletcher, @dmlary, @kaifastromai, and @jsgf for contributing!
32+
133
# 0.3.17 (April 21, 2023)
234

335
This release of `tracing-subscriber` fixes a build error when using `env-filter`

tracing-subscriber/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.3.17"
3+
version = "0.3.18"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

0 commit comments

Comments
 (0)