File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
- # 0.1.17 (October 1, 2021)
1
+ # 0.1.18 (October 5, 2021)
2
+
3
+ This release fixes issues introduced in v0.1.17.
4
+
5
+ ### Fixed
6
+
7
+ - fixed mismatched types compiler error that may occur when using
8
+ ` #[instrument] ` on an ` async fn ` that returns an ` impl Trait ` value that
9
+ includes a closure ([ #1616 ] )
10
+ - fixed false positives for ` clippy::suspicious_else_formatting ` warnings due to
11
+ rust-lang/rust-clippy #7760 and rust-lang/rust-clippy #6249 ([ #1617 ] )
12
+ - fixed ` clippy::let_unit_value ` lints when using ` #[instrument] ` ([ #1614 ] )
13
+
14
+ [ #1617 ] : https://github.com/tokio-rs/tracing/pull/1617
15
+ [ #1616 ] : https://github.com/tokio-rs/tracing/pull/1616
16
+ [ #1614 ] : https://github.com/tokio-rs/tracing/pull/1614
17
+
18
+ # 0.1.17 (YANKED) (October 1, 2021)
2
19
3
20
This release significantly improves performance when ` #[instrument] ` -generated
4
21
spans are below the maximum enabled level.
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.17
21
+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.18
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.17 "
50
+ tracing-attributes = " 0.1.18 "
51
51
```
52
52
53
53
You can’t perform that action at this time.
0 commit comments