Skip to content

Commit 9c402e4

Browse files
committed
attributes: prepare to release 0.1.18
# 0.1.17 (October 1, 2021) This release fixes issues introduced in v0.1.17. ### Fixed - fixed mismatched types compiler error that may occur when using `#[instrument]` on an `async fn` that returns an `impl Trait` value that includes a closure ([#1616]) - fixed false positives for `clippy::suspicious_else_formatting` warnings due to rust-lang/rust-clippy#7760 and rust-lang/rust-clippy#6249 ([#1617]) - fixed `clippy::let_unit_value` lints when using `#[instrument]` ([#1614]) [#1617]: #1617 [#1616]: #1616 [#1614]: #1614
1 parent 7dda7f5 commit 9c402e4

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

tracing-attributes/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# 0.1.17 (October 1, 2021)
22

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+
# 0.1.17 (YANKED) (October 1, 2021)
18+
319
This release significantly improves performance when `#[instrument]`-generated
420
spans are below the maximum enabled level.
521

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.17"
11+
version = "0.1.18"
1212
authors = [
1313
"Tokio Contributors <team@tokio.rs>",
1414
"Eliza Weisman <eliza@buoyant.io>",

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

5353

tracing-attributes/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies]
19-
//! tracing-attributes = "0.1.17"
19+
//! tracing-attributes = "0.1.18"
2020
//! ```
2121
//!
2222
//! The [`#[instrument]`][instrument] attribute can now be added to a function
@@ -52,7 +52,7 @@
5252
//! supported compiler version is not considered a semver breaking change as
5353
//! long as doing so complies with this policy.
5454
//!
55-
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.17")]
55+
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.18")]
5656
#![doc(
5757
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
5858
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)