Commit baa5489 1 parent cb0f0e7 commit baa5489 Copy full SHA for baa5489
File tree 3 files changed +29
-3
lines changed
3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.28 (November 26, 2024)
2
+
3
+ ### Changed
4
+
5
+ - Bump MSRV to 1.63 ([ #2793 ] )
6
+
7
+ ### Fixed
8
+
9
+ - Added missing RecordTypes for instrument ([ #2781 ] )
10
+ - Change order of async and unsafe modifier ([ #2864 ] )
11
+ - Extract match scrutinee ([ #2880 ] )
12
+ - Allow field path segments to be keywords ([ #2925 ] )
13
+ - Support const values for ` target ` and ` name ` ([ #2941 ] )
14
+
15
+ ### Documented
16
+
17
+ - Fix backporting error in attributes ([ #2780 ] )
18
+
19
+ [ #2780 ] : https://github.com/tokio-rs/tracing/pull/2780
20
+ [ #2781 ] : https://github.com/tokio-rs/tracing/pull/2781
21
+ [ #2793 ] : https://github.com/tokio-rs/tracing/pull/2793
22
+ [ #2864 ] : https://github.com/tokio-rs/tracing/pull/2864
23
+ [ #2880 ] : https://github.com/tokio-rs/tracing/pull/2880
24
+ [ #2925 ] : https://github.com/tokio-rs/tracing/pull/2925
25
+ [ #2941 ] : https://github.com/tokio-rs/tracing/pull/2941
26
+
1
27
# 0.1.27 (October 13, 2023)
2
28
3
29
### Changed
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ name = "tracing-attributes"
8
8
# - README.md
9
9
# - Update CHANGELOG.md.
10
10
# - Create "v0.1.x" git tag.
11
- version = " 0.1.27 "
11
+ version = " 0.1.28 "
12
12
authors = [
13
13
" Tokio Contributors <team@tokio.rs>" ,
14
14
" 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.26
21
+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.28
22
22
[ docs-master-badge ] : https://img.shields.io/badge/docs-master-blue
23
23
[ docs-master-url ] : https://tracing-rs.netlify.com/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.26 "
50
+ tracing-attributes = " 0.1.28 "
51
51
```
52
52
53
53
You can’t perform that action at this time.
0 commit comments