Skip to content

Commit 02a0bad

Browse files
authored
attributes: prepare to release v0.1.25 (#2625)
# 0.1.25 (June 19th, 2023) This release of `tracing-attributes` fixes the Clippy lint [`let_with_type_underscore`] in code generated by the `#[instrument]` attribute in Rust 1.70+. ### Fixed - Allow [`clippy::let_with_type_underscore`] in macro-generated code ([#2609]) Thanks to @coolreader19 for contributing to this release! [#2609]: #2609 [`let_with_type_underscore`]: http://rust-lang.github.io/rust-clippy/rust-1.70.0/index.html#let_with_type_underscore
1 parent a65bb78 commit 02a0bad

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

tracing-attributes/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 0.1.25 (June 19th, 2023)
2+
3+
This release of `tracing-attributes` fixes the Clippy lint
4+
[`let_with_type_underscore`] in code generated by the `#[instrument]`
5+
attribute in Rust 1.70+.
6+
7+
### Fixed
8+
9+
- Allow [`clippy::let_with_type_underscore`] in macro-generated code ([#2609])
10+
11+
Thanks to @coolreader19 for contributing to this release!
12+
13+
[#2609]: https://github.com/tokio-rs/tracing/pull/2609
14+
15+
[`let_with_type_underscore`]: http://rust-lang.github.io/rust-clippy/rust-1.70.0/index.html#let_with_type_underscore
16+
117
# 0.1.24 (April 24th, 2023)
218

319
This release of `tracing-attributes` adds support for passing an optional

tracing-attributes/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.24"
11+
version = "0.1.25"
1212
authors = [
1313
"Tokio Contributors <[email protected]>",
1414
"Eliza Weisman <[email protected]>",

tracing-attributes/README.md

Lines changed: 2 additions & 2 deletions
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.23
21+
[docs-url]: https://docs.rs/tracing-attributes/0.1.25
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.23"
50+
tracing-attributes = "0.1.25"
5151
```
5252

5353

0 commit comments

Comments
 (0)