attributes: prepare to release 0.1.6 (#488)

Added

-  Updated documentation (#468)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-12-20 15:22:04 -08:00 committed by GitHub
parent d7d561febd
commit 07f2ab6ada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
# 0.1.6 (December 20, 2019)
### Added
- Updated documentation (#468)
# 0.1.5 (October 22, 2019) # 0.1.5 (October 22, 2019)
### Added ### Added

View File

@ -8,7 +8,7 @@ name = "tracing-attributes"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag. # - Create "v0.1.x" git tag.
version = "0.1.5" version = "0.1.6"
authors = [ authors = [
"Tokio Contributors <team@tokio.rs>", "Tokio Contributors <team@tokio.rs>",
"Eliza Weisman <eliza@buoyant.io>", "Eliza Weisman <eliza@buoyant.io>",

View File

@ -14,7 +14,7 @@ Macro attributes for application-level tracing.
[crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg [crates-badge]: https://img.shields.io/crates/v/tracing-attributes.svg
[crates-url]: https://crates.io/crates/tracing-attributes [crates-url]: https://crates.io/crates/tracing-attributes
[docs-badge]: https://docs.rs/tracing-attributes/badge.svg [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-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes [docs-master-url]: https://tracing-rs.netlify.com/tracing_attributes
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@ -39,7 +39,7 @@ First, add this to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
tracing-attributes = "0.1.5" tracing-attributes = "0.1.6"
``` ```
*Compiler support: requires rustc 1.39+* *Compiler support: requires rustc 1.39+*
@ -58,7 +58,7 @@ pub fn my_function(my_arg: usize) {
[`tracing`]: https://crates.io/crates/tracing [`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 ## License

View File

@ -33,9 +33,9 @@
//! ``` //! ```
//! //!
//! [`tracing`]: https://crates.io/crates/tracing //! [`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 //! [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( #![warn(
missing_debug_implementations, missing_debug_implementations,
missing_docs, missing_docs,
@ -145,7 +145,7 @@ use syn::{
/// # fn main() {} /// # 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 /// [`tracing`]: https://github.com/tokio-rs/tracing
/// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html /// [`fmt::Debug`]: https://doc.rust-lang.org/std/fmt/trait.Debug.html
#[proc_macro_attribute] #[proc_macro_attribute]