Skip to content

Commit 2d55f6f

Browse files
authored
chore: prepare tracing 0.1.44 (#3439)
# 0.1.44 (December 18, 2025) ### Fixed - Fix `record_all` panic ([#3432]) ### Changed - `tracing-core`: updated to 0.1.36 ([#3440]) [#3432]: #3432 [#3440]: #3440
1 parent 10a9e83 commit 2d55f6f

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

tracing/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.1.44 (December 18, 2025)
2+
3+
### Fixed
4+
5+
- Fix `record_all` panic ([#3432])
6+
7+
### Changed
8+
9+
- `tracing-core`: updated to 0.1.36 ([#3440])
10+
11+
[#3432]: https://github.com/tokio-rs/tracing/pull/3432
12+
[#3440]: https://github.com/tokio-rs/tracing/pull/3440
13+
114
# 0.1.43 (November 28, 2025)
215

316
#### Important

tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "tracing"
55
# - Update doc url in README.md.
66
# - Update CHANGELOG.md.
77
# - Create "tracing-0.1.x" git tag
8-
version = "0.1.43"
8+
version = "0.1.44"
99
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
1010
license = "MIT"
1111
readme = "README.md"

tracing/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Application-level tracing for Rust.
1616
[Documentation][docs-url] | [Chat][discord-url]
1717

1818
[crates-badge]: https://img.shields.io/crates/v/tracing.svg
19-
[crates-url]: https://crates.io/crates/tracing/0.1.43
19+
[crates-url]: https://crates.io/crates/tracing/0.1.44
2020
[docs-badge]: https://docs.rs/tracing/badge.svg
21-
[docs-url]: https://docs.rs/tracing/0.1.43
21+
[docs-url]: https://docs.rs/tracing/0.1.44
2222
[docs-v0.2.x-badge]: https://img.shields.io/badge/docs-v0.2.x-blue
2323
[docs-v0.2.x-url]: https://tracing.rs/tracing
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -250,7 +250,7 @@ my_future
250250
is as long as the future's.
251251

252252
The second, and preferred, option is through the
253-
[`#[instrument]`](https://docs.rs/tracing/0.1.43/tracing/attr.instrument.html)
253+
[`#[instrument]`](https://docs.rs/tracing/0.1.44/tracing/attr.instrument.html)
254254
attribute:
255255

256256
```rust
@@ -297,7 +297,7 @@ span.in_scope(|| {
297297
// Dropping the span will close it, indicating that it has ended.
298298
```
299299

300-
The [`#[instrument]`](https://docs.rs/tracing/0.1.43/tracing/attr.instrument.html) attribute macro
300+
The [`#[instrument]`](https://docs.rs/tracing/0.1.44/tracing/attr.instrument.html) attribute macro
301301
can reduce some of this boilerplate:
302302

303303
```rust

0 commit comments

Comments
 (0)