attributes: prepare to release v0.1.8 (#714)

0.1.8 (May 13, 2020)

Added:

- Support for using `#[instrument]` on methods that are part of
  [`async-trait`] trait implementations (#711)
- Optional `#[instrument(err)]` argument to automatically emit an event
  if an instrumented function returns `Err` (#637)

Thanks to @ilana and @nightmared for contributing to this release!

[`async-trait`]: https://crates.io/crates/async-trait

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2020-05-14 14:28:48 -07:00 committed by GitHub
parent f8a9769622
commit b0d75ff489
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 6 deletions

View File

@ -1,3 +1,16 @@
# 0.1.8 (May 13, 2020)
### Added
- Support for using `#[instrument]` on methods that are part of [`async-trait`]
trait implementations (#711)
- Optional `#[instrument(err)]` argument to automatically emit an event if an
instrumented function returns `Err` (#637)
Thanks to @ilana and @nightmared for contributing to this release!
[`async-trait`]: https://crates.io/crates/async-trait
# 0.1.7 (February 26, 2020)
### Added

View File

@ -8,7 +8,7 @@ name = "tracing-attributes"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.7"
version = "0.1.8"
authors = [
"Tokio Contributors <team@tokio.rs>",
"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-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.7
[docs-url]: https://docs.rs/tracing-attributes/0.1.8
[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.7"
tracing-attributes = "0.1.8"
```
*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.7/tracing/span/index.html
[span]: https://docs.rs/tracing/0.1.8/tracing/span/index.html
## License

View File

@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! tracing-attributes = "0.1.7"
//! tracing-attributes = "0.1.8"
//! ```
//!
//! *Compiler support: requires rustc 1.39+*
@ -35,7 +35,7 @@
//! [`tracing`]: https://crates.io/crates/tracing
//! [span]: https://docs.rs/tracing/latest/tracing/span/index.html
//! [instrument]: attr.instrument.html
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.7")]
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.8")]
#![warn(
missing_debug_implementations,
missing_docs,