Skip to content

Commit 5508623

Browse files
authored
chore: prepare tracing-attributes 0.1.31 (#3417)
# 0.1.31 (November 26, 2025) ### Added - Support constant expressions as instrument field names ([#3158]) [#3158]: https://github.com/tokio-rs/tracing/pull/#3158
1 parent d92b4c0 commit 5508623

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

tracing-attributes/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.1.31 (November 26, 2025)
2+
3+
### Added
4+
5+
- Support constant expressions as instrument field names ([#3158])
6+
7+
[#3158]: https://github.com/tokio-rs/tracing/pull/#3158
8+
19
# 0.1.30 (June 17, 2025)
210

311
### Fixed

tracing-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "tracing-attributes"
55
# - Update doc url in README.md.
66
# - Update CHANGELOG.md.
77
# - Create "tracing-attributes-0.1.x" git tag.
8-
version = "0.1.30"
8+
version = "0.1.31"
99
authors = [
1010
"Tokio Contributors <[email protected]>",
1111
"Eliza Weisman <[email protected]>",

tracing-attributes/README.md

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

1818
[crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
19-
[crates-url]: https://crates.io/crates/tracing-attributes
19+
[crates-url]: https://crates.io/crates/tracing-attributes/0.1.31
2020
[docs-badge]: https://docs.rs/tracing-attributes/badge.svg
21-
[docs-url]: https://docs.rs/tracing-attributes/0.1.30
21+
[docs-url]: https://docs.rs/tracing-attributes/0.1.31
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_attributes
2424
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:
4747

4848
```toml
4949
[dependencies]
50-
tracing-attributes = "0.1.30"
50+
tracing-attributes = "0.1.31"
5151
```
5252

5353

tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ rust-version = "1.65.0"
2727
[dependencies]
2828
tracing-core = { path = "../tracing-core", version = "0.1.35", default-features = false }
2929
log = { version = "0.4.17", optional = true }
30-
tracing-attributes = { path = "../tracing-attributes", version = "0.1.29", optional = true }
30+
tracing-attributes = { path = "../tracing-attributes", version = "0.1.31", optional = true }
3131
pin-project-lite = "0.2.9"
3232

3333
[dev-dependencies]

0 commit comments

Comments
 (0)