Skip to content

Commit 75b8d01

Browse files
committed
chore: prepare tracing-subscriber 0.3.21
# 0.3.21 (November 30, 2025) ### Fixed - Change registry exit to decrement local span ref only ([#3331]) - Make Layered propagate `on_register_dispatch` ([#3379]) ### Performance - Remove `clone_span` on enter ([#3289]) ### Documented - Fix a few small things in the format module ([#3339]) - Fix extra closing brace in layer docs ([#3350]) - Fix link in `FmtSpan` docs ([#3411]) [#3289]: https://github.com/tokio-rs/tracing/pull/#3289 [#3331]: https://github.com/tokio-rs/tracing/pull/#3331 [#3339]: https://github.com/tokio-rs/tracing/pull/#3339 [#3350]: https://github.com/tokio-rs/tracing/pull/#3350 [#3379]: https://github.com/tokio-rs/tracing/pull/#3379 [#3411]: https://github.com/tokio-rs/tracing/pull/#3411
1 parent 9751b6e commit 75b8d01

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 0.3.21 (November 30, 2025)
2+
3+
### Fixed
4+
5+
- Change registry exit to decrement local span ref only ([#3331])
6+
- Make Layered propagate `on_register_dispatch` ([#3379])
7+
8+
### Performance
9+
10+
- Remove `clone_span` on enter ([#3289])
11+
12+
### Documented
13+
14+
- Fix a few small things in the format module ([#3339])
15+
- Fix extra closing brace in layer docs ([#3350])
16+
- Fix link in `FmtSpan` docs ([#3411])
17+
18+
[#3289]: https://github.com/tokio-rs/tracing/pull/#3289
19+
[#3331]: https://github.com/tokio-rs/tracing/pull/#3331
20+
[#3339]: https://github.com/tokio-rs/tracing/pull/#3339
21+
[#3350]: https://github.com/tokio-rs/tracing/pull/#3350
22+
[#3379]: https://github.com/tokio-rs/tracing/pull/#3379
23+
[#3411]: https://github.com/tokio-rs/tracing/pull/#3411
24+
125
# 0.3.20 (August 29, 2025)
226

327
[ [crates.io][crate-0.3.20] ] | [ [docs.rs][docs-0.3.20] ]
@@ -6,6 +30,13 @@
630

731
- Escape ANSI escape sequences in logs
832

33+
### Added
34+
35+
- Implement `Clone` for `EnvFilter` (#3360)
36+
37+
[docs-0.3.20]: https://docs.rs/tracing-subscriber/0.3.20/tracing_subscriber/
38+
[crate-0.3.20]: https://crates.io/crates/tracing-subscriber/0.3.20
39+
940
# 0.3.19 (November 29, 2024)
1041

1142
[ [crates.io][crate-0.3.19] ] | [ [docs.rs][docs-0.3.19] ]

tracing-subscriber/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.3.20"
3+
version = "0.3.21"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

tracing-subscriber/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ application authors using `tracing` to instrument their applications.
2929
[tracing]: https://github.com/tokio-rs/tracing/tree/main/tracing
3030
[tracing-fmt]: https://github.com/tokio-rs/tracing/tree/main/tracing-subscriber
3131
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
32-
[crates-url]: https://crates.io/crates/tracing-subscriber
32+
[crates-url]: https://crates.io/crates/tracing-subscriber/0.3.21
3333
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
34-
[docs-url]: https://docs.rs/tracing-subscriber/latest
34+
[docs-url]: https://docs.rs/tracing-subscriber/0.3.21
3535
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
3636
[docs-v0.2.x-url]: https://tracing.rs/tracing_subscriber
3737
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

0 commit comments

Comments
 (0)