diff --git a/tracing-attributes/CHANGELOG.md b/tracing-attributes/CHANGELOG.md index 55a214d4..85da5078 100644 --- a/tracing-attributes/CHANGELOG.md +++ b/tracing-attributes/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.6 (December 20, 2019) + +### Added + +- Updated documentation (#468) + # 0.1.5 (October 22, 2019) ### Added diff --git a/tracing-attributes/Cargo.toml b/tracing-attributes/Cargo.toml index 682559be..5c75908c 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.5" +version = "0.1.6" authors = [ "Tokio Contributors ", "Eliza Weisman ", diff --git a/tracing-attributes/README.md b/tracing-attributes/README.md index dd116e44..c0ff8f50 100644 --- a/tracing-attributes/README.md +++ b/tracing-attributes/README.md @@ -14,7 +14,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.5 +[docs-url]: https://docs.rs/tracing-attributes/0.1.6 [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 @@ -39,7 +39,7 @@ First, add this to your `Cargo.toml`: ```toml [dependencies] -tracing-attributes = "0.1.5" +tracing-attributes = "0.1.6" ``` *Compiler support: requires rustc 1.39+* @@ -58,7 +58,7 @@ pub fn my_function(my_arg: usize) { [`tracing`]: https://crates.io/crates/tracing -[span]: https://docs.rs/tracing/0.1.5/tracing/span/index.html +[span]: https://docs.rs/tracing/0.1.6/tracing/span/index.html ## License diff --git a/tracing-attributes/src/lib.rs b/tracing-attributes/src/lib.rs index 5e4d299f..fb7ec7f4 100644 --- a/tracing-attributes/src/lib.rs +++ b/tracing-attributes/src/lib.rs @@ -33,9 +33,9 @@ //! ``` //! //! [`tracing`]: https://crates.io/crates/tracing -//! [span]: https://docs.rs/tracing/0.1.5/tracing/span/index.html +//! [span]: https://docs.rs/tracing/0.1.6/tracing/span/index.html //! [instrument]: attr.instrument.html -#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.5")] +#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.6")] #![warn( missing_debug_implementations, missing_docs, @@ -145,7 +145,7 @@ use syn::{ /// # fn main() {} /// ``` /// -/// [span]: https://docs.rs/tracing/0.1.5/tracing/span/index.html +/// [span]: https://docs.rs/tracing/0.1.6/tracing/span/index.html /// [`tracing`]: https://github.com/tokio-rs/tracing /// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html #[proc_macro_attribute]