File tree 4 files changed +14
-5
lines changed 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.11 (August 18, 2020)
2
+
3
+ ### Fixed
4
+
5
+ - Corrected wrong minimum supported Rust version note in docs (#941 )
6
+ - Removed unused ` syn ` features (#928 )
7
+
8
+ Thanks to new contributor @jhpratt for contributing to this release!`
9
+
1
10
# 0.1.10 (August 10, 2020)
2
11
3
12
### Added
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ name = "tracing-attributes"
8
8
# - README.md
9
9
# - Update CHANGELOG.md.
10
10
# - Create "v0.1.x" git tag.
11
- version = " 0.1.10 "
11
+ version = " 0.1.11 "
12
12
authors = [
13
13
" Tokio Contributors <team@tokio.rs>" ,
14
14
" Eliza Weisman <eliza@buoyant.io>" ,
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.10
21
+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.11
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.10 "
50
+ tracing-attributes = " 0.1.11 "
51
51
```
52
52
53
53
Original file line number Diff line number Diff line change 16
16
//!
17
17
//! ```toml
18
18
//! [dependencies]
19
- //! tracing-attributes = "0.1.10 "
19
+ //! tracing-attributes = "0.1.11 "
20
20
//! ```
21
21
//!
22
22
//! The [`#[instrument]`][instrument] attribute can now be added to a function
52
52
//! supported compiler version is not considered a semver breaking change as
53
53
//! long as doing so complies with this policy.
54
54
//!
55
- #![ doc( html_root_url = "https://docs.rs/tracing-attributes/0.1.10 " ) ]
55
+ #![ doc( html_root_url = "https://docs.rs/tracing-attributes/0.1.11 " ) ]
56
56
#![ doc(
57
57
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo.svg" ,
58
58
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
You can’t perform that action at this time.
0 commit comments