Skip to content

Commit

Permalink
tracing: prepare to release 0.1.9 (#349)
Browse files Browse the repository at this point in the history
### Fixed

- Fixed `#[instrument]`ed async functions not compiling on
  `nightly-2019-09-11` or newer (#342)

### Changed

- Significantly reduced performance impact of skipped spans and events
  when a `Subscriber` is not in use (#326)
- The `log` feature will now only cause `tracing` spans and events to
  emit log records when a `Subscriber` is not in use (#346)

### Added

- Added support for overriding the name of the span generated by
  `#[instrument]` (#330)
- `log-always` feature flag to emit log records even when a `Subscriber`
  is set (#346)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Sep 13, 2019
1 parent 9cb629e commit cc70560
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 8 deletions.
21 changes: 21 additions & 0 deletions tracing/CHANGELOG.md
@@ -1,3 +1,24 @@
# 0.1.9 (September 13, 2019)

### Fixed

- Fixed `#[instrument]`ed async functions not compiling on `nightly-2019-09-11`
or newer (#342)

### Changed

- Significantly reduced performance impact of skipped spans and events when a
`Subscriber` is not in use (#326)
- The `log` feature will now only cause `tracing` spans and events to emit log
records when a `Subscriber` is not in use (#346)

### Added

- Added support for overriding the name of the span generated by `#[instrument]`
(#330)
- `log-always` feature flag to emit log records even when a `Subscriber` is set
(#346)

# 0.1.8 (September 3, 2019)

### Changed
Expand Down
6 changes: 3 additions & 3 deletions tracing/Cargo.toml
Expand Up @@ -8,13 +8,13 @@ name = "tracing"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag
version = "0.1.8"
version = "0.1.9"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tracing/0.1.8/tracing"
documentation = "https://docs.rs/tracing/0.1.9/tracing"
description = """
Application-level tracing for Rust.
"""
Expand All @@ -30,7 +30,7 @@ edition = "2018"
[dependencies]
tracing-core = { version = "0.1.6", default-features = false }
log = { version = "0.4", optional = true }
tracing-attributes = "0.1.2"
tracing-attributes = "0.1.3"
cfg-if = "0.1.9"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions tracing/README.md
Expand Up @@ -13,9 +13,9 @@ Application-level tracing for Rust.
[Chat][gitter-url]

[crates-badge]: https://img.shields.io/crates/v/tracing.svg
[crates-url]: https://crates.io/crates/tracing/0.1.8
[crates-url]: https://crates.io/crates/tracing/0.1.9
[docs-badge]: https://docs.rs/tracing/badge.svg
[docs-url]: https://docs.rs/tracing/0.1.8
[docs-url]: https://docs.rs/tracing/0.1.9
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
Expand Down Expand Up @@ -50,7 +50,7 @@ First, add this to your `Cargo.toml`:

```toml
[dependencies]
tracing = "0.1.8"
tracing = "0.1.9"
```

This crate provides macros for creating `Span`s and `Event`s, which represent
Expand Down
4 changes: 2 additions & 2 deletions tracing/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tracing/0.1.8")]
#![doc(html_root_url = "https://docs.rs/tracing/0.1.9")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]

Expand Down Expand Up @@ -593,7 +593,7 @@
//!
//! ```toml
//! [dependencies]
//! tracing = { version = "0.1.8", default-features = false }
//! tracing = { version = "0.1.9", default-features = false }
//! ```
//! **Note**:`tracing`'s `no_std` support requires `liballoc`.
//!
Expand Down

0 comments on commit cc70560

Please sign in to comment.