Skip to content

Commit 4302064

Browse files
authored
attributes: prepare to release v0.1.26 (#2631)
# 0.1.26 (June 21th, 2023) This release of `tracing-attributes` fixes warnings due to `allow` attributes in generated code that allow lints which may not exist on earlier versions of rustc. ### Fixed - Allow `unknown_lints` in macro-generated code ([#2626]) Thanks to @mladedav for contributing to this release!
1 parent a347f31 commit 4302064

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

tracing-attributes/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.1.26 (June 21th, 2023)
2+
3+
This release of `tracing-attributes` fixes warnings due to `allow` attributes in
4+
generated code that allow lints which may not exist on earlier versions of rustc.
5+
6+
### Fixed
7+
8+
- Allow `unknown_lints` in macro-generated code ([#2626])
9+
10+
Thanks to @mladedav for contributing to this release!
11+
112
# 0.1.25 (June 19th, 2023)
213

314
This release of `tracing-attributes` fixes the Clippy lint

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.25"
11+
version = "0.1.26"
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.25
21+
[docs-url]: https://docs.rs/tracing-attributes/0.1.26
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.25"
50+
tracing-attributes = "0.1.26"
5151
```
5252

5353

0 commit comments

Comments
 (0)