From 1e2cb9c9bb5016267e03a1999d5047e7a9040176 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 12 Sep 2019 13:46:32 -0700 Subject: [PATCH] attributes: prepare to release 0.1.3 Fixed: - Fixed `#[instrument]`ed async functions not compiling on `nightly-2019-09-11` or newer (#342) Signed-off-by: Eliza Weisman --- tracing-attributes/CHANGELOG.md | 7 +++++++ tracing-attributes/Cargo.toml | 2 +- tracing-attributes/README.md | 4 ++-- tracing-attributes/src/lib.rs | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/tracing-attributes/CHANGELOG.md b/tracing-attributes/CHANGELOG.md index 022bda168a..efcca535b8 100644 --- a/tracing-attributes/CHANGELOG.md +++ b/tracing-attributes/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.3 (September 12, 2019) + +### Fixed + +- Fixed `#[instrument]`ed async functions not compiling on `nightly-2019-09-11` + or newer (#342) + # 0.1.2 (August 19, 2019) ### Changed diff --git a/tracing-attributes/Cargo.toml b/tracing-attributes/Cargo.toml index 3639eddc08..4c507f8d5a 100644 --- a/tracing-attributes/Cargo.toml +++ b/tracing-attributes/Cargo.toml @@ -8,7 +8,7 @@ name = "tracing-attributes" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.2" +version = "0.1.3" authors = [ "Tokio Contributors ", "Eliza Weisman ", diff --git a/tracing-attributes/README.md b/tracing-attributes/README.md index 86200e1535..16c4a79d8b 100644 --- a/tracing-attributes/README.md +++ b/tracing-attributes/README.md @@ -15,7 +15,7 @@ Macro attributes for application-level tracing. [crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg [crates-url]: https://crates.io/crates/tracing-attributes [docs-badge]: https://docs.rs/tracing-attributes/badge.svg -[docs-url]: https://docs.rs/tracing-attributes/0.1.2 +[docs-url]: https://docs.rs/tracing-attributes/0.1.3 [docs-master-badge]: https://img.shields.io/badge/docs-master-blue [docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg @@ -40,7 +40,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -tracing-attributes = "0.1.2" +tracing-attributes = "0.1.3" ``` This crate provides the `#[instrument]` attribute for instrumenting a function diff --git a/tracing-attributes/src/lib.rs b/tracing-attributes/src/lib.rs index 83cd903468..381f2a511c 100644 --- a/tracing-attributes/src/lib.rs +++ b/tracing-attributes/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.2")] +#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.3")] #![deny(missing_debug_implementations, unreachable_pub)] #![cfg_attr(test, deny(warnings))]