File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1+
2+ # 0.1.13 (February 17, 2021)
3+
4+ ### Fixed
5+
6+ - Compiler error when using ` #[instrument(err)] ` on functions which return `impl
7+ Trait` ([ #1236 ] )
8+
9+ [ #1236 ] : https://github.com/tokio-rs/tracing/pull/1236
10+
111# 0.1.12 (February 4, 2021)
212
313### Fixed
Original file line number Diff line number Diff 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.12 "
11+ version = " 0.1.13 "
1212authors = [
1313 " Tokio Contributors <team@tokio.rs>" ,
1414 " 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.
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.12
21+ [ docs-url ] : https://docs.rs/tracing-attributes/0.1.13
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.12 "
50+ tracing-attributes = " 0.1.13 "
5151```
5252
5353
Original file line number Diff line number Diff line change 1616//!
1717//! ```toml
1818//! [dependencies]
19- //! tracing-attributes = "0.1.12 "
19+ //! tracing-attributes = "0.1.13 "
2020//! ```
2121//!
2222//! The [`#[instrument]`][instrument] attribute can now be added to a function
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.12 " ) ]
55+ #![ doc( html_root_url = "https://docs.rs/tracing-attributes/0.1.13 " ) ]
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/"
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ edition = "2018"
2929[dependencies ]
3030tracing-core = { path = " ../tracing-core" , version = " 0.1.17" , default-features = false }
3131log = { version = " 0.4" , optional = true }
32- tracing-attributes = { path = " ../tracing-attributes" , version = " 0.1.12 " , optional = true }
32+ tracing-attributes = { path = " ../tracing-attributes" , version = " 0.1.13 " , optional = true }
3333cfg-if = " 1.0.0"
3434pin-project-lite = " 0.2"
3535
You can’t perform that action at this time.
0 commit comments