File tree Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Expand file tree Collapse file tree 4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 0.1.20 (March 8, 2022)
2
+
3
+ ### Fixed
4
+
5
+ - Compilation failure with ` --minimal-versions ` due to a too-permissive ` syn `
6
+ dependency ([ #1960 ] )
7
+
8
+ ### Changed
9
+
10
+ - Bumped minimum supported Rust version (MSRV) to 1.49.0 ([ #1913 ] )
11
+
12
+ Thanks to new contributor @udoprog for contributing to this release!
13
+
14
+ [ #1960 ] : https://github.com/tokio-rs/tracing/pull/1960
15
+ [ #1913 ] : https://github.com/tokio-rs/tracing/pull/1913
16
+
1
17
# 0.1.19 (February 3, 2022)
2
18
3
19
This release introduces a new ` #[instrument(ret)] ` argument to emit an event
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.19 "
11
+ version = " 0.1.20 "
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.19
21
+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.20
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.19 "
50
+ tracing-attributes = " 0.1.20 "
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.19 "
19
+ //! tracing-attributes = "0.1.20 "
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.19 " ) ]
55
+ #![ doc( html_root_url = "https://docs.rs/tracing-attributes/0.1.20 " ) ]
56
56
#![ doc(
57
57
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png" ,
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