Skip to content

Commit baa5489

Browse files
authored
chore: prepare tracing-attributes 0.1.28 (#3155)
# 0.1.28 (November 26, 2024) ### Changed - Bump MSRV to 1.63 ([#2793]) ### Fixed - Added missing RecordTypes for instrument ([#2781]) - Change order of async and unsafe modifier ([#2864]) - Extract match scrutinee ([#2880]) - Allow field path segments to be keywords ([#2925]) - Support const values for `target` and `name` ([#2941]) ### Documented - Fix backporting error in attributes ([#2780]) [#2780]: #2780 [#2781]: #2781 [#2793]: #2793 [#2864]: #2864 [#2880]: #2880 [#2925]: #2925 [#2941]: #2941
1 parent cb0f0e7 commit baa5489

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

tracing-attributes/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
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+
127
# 0.1.27 (October 13, 2023)
228

329
### Changed

tracing-attributes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "tracing-attributes"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag.
11-
version = "0.1.27"
11+
version = "0.1.28"
1212
authors = [
1313
"Tokio Contributors <team@tokio.rs>",
1414
"Eliza Weisman <eliza@buoyant.io>",

tracing-attributes/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Macro attributes for application-level tracing.
1818
[crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
1919
[crates-url]: https://crates.io/crates/tracing-attributes
2020
[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
2222
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2323
[docs-master-url]: https://tracing-rs.netlify.com/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.26"
50+
tracing-attributes = "0.1.28"
5151
```
5252

5353

0 commit comments

Comments
 (0)