From e1d5835ef90c132bc11d5aa5d80170862e7888b3 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Wed, 25 Sep 2019 15:43:33 -0700 Subject: [PATCH] attributes: prepare to release 0.1.4 Added: - Optional `skip` argument to `#[instrument]` for excluding function parameters from generated spans (#359) 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 efcca535b8..52ecc7f3a2 100644 --- a/tracing-attributes/CHANGELOG.md +++ b/tracing-attributes/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.4 (September 25, 2019) + +### Added + +- Optional `skip` argument to `#[instrument]` for excluding function parameters + from generated spans (#359) + # 0.1.3 (September 12, 2019) ### Fixed diff --git a/tracing-attributes/Cargo.toml b/tracing-attributes/Cargo.toml index 4c507f8d5a..0b1fea20c5 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.3" +version = "0.1.4" authors = [ "Tokio Contributors ", "Eliza Weisman ", diff --git a/tracing-attributes/README.md b/tracing-attributes/README.md index 16c4a79d8b..c54c70bc5d 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.3 +[docs-url]: https://docs.rs/tracing-attributes/0.1.4 [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.3" +tracing-attributes = "0.1.4" ``` 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 2db84963c2..01e5de4373 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.3")] +#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.4")] #![deny(missing_debug_implementations, unreachable_pub)] #![cfg_attr(test, deny(warnings))]