mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 07:20:35 +00:00
attributes: prepare to release 0.1.10 (#914)
### Added - Support for using `self` in field expressions when instrumenting `async-trait` functions (#875) - Several documentation improvements (#832, #897, #911, #913) Thanks to @anton-dutov and @nightmared for contributing to this release!
This commit is contained in:
parent
59494e0897
commit
35fee1c18f
@ -1,3 +1,13 @@
|
|||||||
|
# 0.1.10 (August 10, 2020)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for using `self` in field expressions when instrumenting `async-trait`
|
||||||
|
functions (#875)
|
||||||
|
- Several documentation improvements (#832, #897, #911, #913)
|
||||||
|
|
||||||
|
Thanks to @anton-dutov and @nightmared for contributing to this release!
|
||||||
|
|
||||||
# 0.1.9 (July 8, 2020)
|
# 0.1.9 (July 8, 2020)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -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.9"
|
version = "0.1.10"
|
||||||
authors = [
|
authors = [
|
||||||
"Tokio Contributors <team@tokio.rs>",
|
"Tokio Contributors <team@tokio.rs>",
|
||||||
"Eliza Weisman <eliza@buoyant.io>",
|
"Eliza Weisman <eliza@buoyant.io>",
|
||||||
|
@ -18,7 +18,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.9
|
[docs-url]: https://docs.rs/tracing-attributes/0.1.10
|
||||||
[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
|
||||||
@ -43,7 +43,7 @@ First, add this to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing-attributes = "0.1.9"
|
tracing-attributes = "0.1.10"
|
||||||
```
|
```
|
||||||
|
|
||||||
*Compiler support: requires rustc 1.39+*
|
*Compiler support: requires rustc 1.39+*
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies]
|
//! [dependencies]
|
||||||
//! tracing-attributes = "0.1.9"
|
//! tracing-attributes = "0.1.10"
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! *Compiler support: requires rustc 1.39+*
|
//! *Compiler support: requires rustc 1.39+*
|
||||||
@ -35,7 +35,7 @@
|
|||||||
//! [`tracing`]: https://crates.io/crates/tracing
|
//! [`tracing`]: https://crates.io/crates/tracing
|
||||||
//! [span]: https://docs.rs/tracing/latest/tracing/span/index.html
|
//! [span]: https://docs.rs/tracing/latest/tracing/span/index.html
|
||||||
//! [instrument]: attr.instrument.html
|
//! [instrument]: attr.instrument.html
|
||||||
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.9")]
|
#![doc(html_root_url = "https://docs.rs/tracing-attributes/0.1.10")]
|
||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo.svg",
|
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo.svg",
|
||||||
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
|
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
|
||||||
|
@ -27,9 +27,9 @@ keywords = ["logging", "tracing", "metrics", "async"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing-core = { path = "../tracing-core", version = "0.1.12", default-features = false }
|
tracing-core = { path = "../tracing-core", version = "0.1.14", default-features = false }
|
||||||
log = { version = "0.4", optional = true }
|
log = { version = "0.4", optional = true }
|
||||||
tracing-attributes = { path = "../tracing-attributes", version = "0.1.9", optional = true }
|
tracing-attributes = { path = "../tracing-attributes", version = "0.1.10", optional = true }
|
||||||
cfg-if = "0.1.10"
|
cfg-if = "0.1.10"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user