subscriber: prepare to release 0.2.0-alpha.4 (#534)

# 0.2.0-alpha.4 (January 11, 2020)

### Fixed

- **registry**: Removed inadvertently committed `dbg!` macros (#533)
This commit is contained in:
Eliza Weisman 2020-01-11 11:23:38 -08:00 committed by GitHub
parent 8214570c44
commit bdddf10d99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 5 deletions

View File

@ -78,7 +78,7 @@ fn main() {
```toml ```toml
[dependencies] [dependencies]
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.2.0-alpha.3" tracing-subscriber = "0.2.0-alpha.4"
``` ```
This subscriber will be used as the default in all threads for the remainder of the duration This subscriber will be used as the default in all threads for the remainder of the duration

View File

@ -1,3 +1,9 @@
# 0.2.0-alpha.4 (January 11, 2020)
### Fixed
- **registry**: Removed inadvertently committed `dbg!` macros (#533)
# 0.2.0-alpha.3 (January 10, 2020) # 0.2.0-alpha.3 (January 10, 2020)
### Added ### Added

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tracing-subscriber" name = "tracing-subscriber"
version = "0.2.0-alpha.3" version = "0.2.0-alpha.4"
authors = [ authors = [
"Eliza Weisman <eliza@buoyant.io>", "Eliza Weisman <eliza@buoyant.io>",
"David Barsky <me@davidbarsky.com>", "David Barsky <me@davidbarsky.com>",

View File

@ -17,7 +17,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg [crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
[crates-url]: https://crates.io/crates/tracing-subscriber [crates-url]: https://crates.io/crates/tracing-subscriber
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg [docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.3 [docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.4
[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_subscriber [docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

View File

@ -51,7 +51,7 @@
//! [`env_logger` crate]: https://crates.io/crates/env_logger //! [`env_logger` crate]: https://crates.io/crates/env_logger
//! [`parking_lot`]: https://crates.io/crates/parking_lot //! [`parking_lot`]: https://crates.io/crates/parking_lot
//! [`registry`]: registry/index.html //! [`registry`]: registry/index.html
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.3")] #![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.4")]
#![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(docsrs, feature(doc_cfg))]
#![warn( #![warn(
missing_debug_implementations, missing_debug_implementations,

View File

@ -93,7 +93,7 @@ fn main() {
```toml ```toml
[dependencies] [dependencies]
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.2.0-alpha.3" tracing-subscriber = "0.2.0-alpha.4"
``` ```
This subscriber will be used as the default in all threads for the remainder of the duration This subscriber will be used as the default in all threads for the remainder of the duration