mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 23:34:40 +00:00
subscriber: prepare to release v0.2.16 (#1256)
### Fixed - **env-filter**: Fixed directives where the level is in mixed case (such as `Info`) failing to parse ([#1126]) - **fmt**: Fixed `fmt::Subscriber` not providing a max-level hint ([#1251]) - `tracing-subscriber` no longer enables `tracing` and `tracing-core`'s default features ([#1144]) ### Changed - **chrono**: Updated `chrono` dependency to 0.4.16 ([#1189]) - **log**: Updated `tracing-log` dependency to 0.1.2 Thanks to @salewski, @taiki-e, @davidpdrsn and @markdingram for contributing to this release! [#1126]: https://github.com/tokio-rs/tracing/pull/1126 [#1251]: https://github.com/tokio-rs/tracing/pull/1251 [#1144]: https://github.com/tokio-rs/tracing/pull/1144 [#1189]: https://github.com/tokio-rs/tracing/pull/1189 Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
parent
a0201ba798
commit
4538d74d22
@ -1,3 +1,26 @@
|
|||||||
|
# 0.2.16 (February 19, 2020)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **env-filter**: Fixed directives where the level is in mixed case (such as
|
||||||
|
`Info`) failing to parse ([#1126])
|
||||||
|
- **fmt**: Fixed `fmt::Subscriber` not providing a max-level hint ([#1251])
|
||||||
|
- `tracing-subscriber` no longer enables `tracing` and `tracing-core`'s default
|
||||||
|
features ([#1144])
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **chrono**: Updated `chrono` dependency to 0.4.16 ([#1189])
|
||||||
|
- **log**: Updated `tracing-log` dependency to 0.1.2
|
||||||
|
|
||||||
|
Thanks to @salewski, @taiki-e, @davidpdrsn and @markdingram for contributing to
|
||||||
|
this release!
|
||||||
|
|
||||||
|
[#1126]: https://github.com/tokio-rs/tracing/pull/1126
|
||||||
|
[#1251]: https://github.com/tokio-rs/tracing/pull/1251
|
||||||
|
[#1144]: https://github.com/tokio-rs/tracing/pull/1144
|
||||||
|
[#1189]: https://github.com/tokio-rs/tracing/pull/1189
|
||||||
|
|
||||||
# 0.2.15 (November 2, 2020)
|
# 0.2.15 (November 2, 2020)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tracing-subscriber"
|
name = "tracing-subscriber"
|
||||||
version = "0.2.15"
|
version = "0.2.16"
|
||||||
authors = [
|
authors = [
|
||||||
"Eliza Weisman <eliza@buoyant.io>",
|
"Eliza Weisman <eliza@buoyant.io>",
|
||||||
"David Barsky <me@davidbarsky.com>",
|
"David Barsky <me@davidbarsky.com>",
|
||||||
@ -41,7 +41,7 @@ smallvec = { optional = true, version = "1" }
|
|||||||
lazy_static = { optional = true, version = "1" }
|
lazy_static = { optional = true, version = "1" }
|
||||||
|
|
||||||
# fmt
|
# fmt
|
||||||
tracing-log = { path = "../tracing-log", version = "0.1", optional = true, default-features = false, features = ["log-tracer", "std"] }
|
tracing-log = { path = "../tracing-log", version = "0.1.2", optional = true, default-features = false, features = ["log-tracer", "std"] }
|
||||||
ansi_term = { version = "0.12", optional = true }
|
ansi_term = { version = "0.12", optional = true }
|
||||||
chrono = { version = "0.4.16", optional = true, default-features = false, features = ["clock", "std"] }
|
chrono = { version = "0.4.16", optional = true, default-features = false, features = ["clock", "std"] }
|
||||||
|
|
||||||
|
@ -21,7 +21,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.15
|
[docs-url]: https://docs.rs/tracing-subscriber/0.2.16
|
||||||
[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
|
||||||
|
@ -67,7 +67,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.15")]
|
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.16")]
|
||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
|
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
|
||||||
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
|
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user