mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-08 10:15:27 +00:00
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:
parent
8214570c44
commit
bdddf10d99
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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>",
|
||||||
|
@ -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
|
||||||
|
@ -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,
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user