File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.29 (June 6, 2025)
2
+
3
+ ### Changed
4
+
5
+ - Bump MSRV to 1.65 ([ #3033 ] )
6
+
7
+ ### Fixed
8
+
9
+ - Let ` dead_code ` lint work on ` #[instrument] ` ed functions ([ #3108 ] )
10
+ - Globally qualify attribute paths ([ #3126 ] )
11
+
12
+ [ #3033 ] : https://github.com/tokio-rs/tracing/pull/3033
13
+ [ #3108 ] : https://github.com/tokio-rs/tracing/pull/3108
14
+ [ #3126 ] : https://github.com/tokio-rs/tracing/pull/3126
15
+
1
16
# 0.1.28 (November 26, 2024)
2
17
3
18
### Changed
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name = "tracing-attributes"
5
5
# - Update doc url in README.md.
6
6
# - Update CHANGELOG.md.
7
7
# - Create "tracing-attributes-0.1.x" git tag.
8
- version = " 0.1.28 "
8
+ version = " 0.1.29 "
9
9
authors = [
10
10
" Tokio Contributors <team@tokio.rs>" ,
11
11
" Eliza Weisman <eliza@buoyant.io>" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Macro attributes for application-level tracing.
18
18
[ crates-badge ] : https://img.shields.io/crates/v/tracing-attributes.svg
19
19
[ crates-url ] : https://crates.io/crates/tracing-attributes
20
20
[ docs-badge ] : https://docs.rs/tracing-attributes/badge.svg
21
- [ docs-url ] : https://docs.rs/tracing-attributes/0.1.28
21
+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.29
22
22
[ docs-v0.2.x-badge ] : https://img.shields.io/badge/docs-v0.2.x-blue
23
23
[ docs-v0.2.x-url ] : https://tracing.rs/tracing_attributes
24
24
[ mit-badge ] : https://img.shields.io/badge/license-MIT-blue.svg
@@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:
47
47
48
48
``` toml
49
49
[dependencies ]
50
- tracing-attributes = " 0.1.28 "
50
+ tracing-attributes = " 0.1.29 "
51
51
```
52
52
53
53
You can’t perform that action at this time.
0 commit comments