mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 15:24:47 +00:00
subscriber: prepare to release 0.1.5 (#375)
### Fixed - Spans not being closed properly after calling `FmtSubscriber::current_span` (#371)
This commit is contained in:
parent
47b6068ae9
commit
aa7ed533e6
@ -1,3 +1,10 @@
|
|||||||
|
# 0.1.5 (October 7, 2019)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Spans not being closed properly when `FmtSubscriber::current_span` is used
|
||||||
|
(#371)
|
||||||
|
|
||||||
# 0.1.4 (September 26, 2019)
|
# 0.1.4 (September 26, 2019)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tracing-subscriber"
|
name = "tracing-subscriber"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
|
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/tracing"
|
repository = "https://github.com/tokio-rs/tracing"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tracing-subscriber/0.1.4/tracing-subscriber"
|
documentation = "https://docs.rs/tracing-subscriber/0.1.5/tracing-subscriber"
|
||||||
description = """
|
description = """
|
||||||
Utilities for implementing and composing `tracing` subscribers.
|
Utilities for implementing and composing `tracing` subscribers.
|
||||||
"""
|
"""
|
||||||
|
@ -19,7 +19,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.1.4
|
[docs-url]: https://docs.rs/tracing-subscriber/0.1.5
|
||||||
[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
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
//! [`chrono`]: https://crates.io/crates/chrono
|
//! [`chrono`]: https://crates.io/crates/chrono
|
||||||
//! [`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
|
||||||
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.1.4")]
|
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.1.5")]
|
||||||
#![warn(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user