Skip to content

Commit 27bcb07

Browse files
committed
subscriber: prepare to release 0.2.17
# 0.2.17 (March 12, 2020) ### Fixed - **fmt**: `Pretty` formatter now honors `with_ansi(false)` to disable ANSI terminal formatting ([#1240]) - **fmt**: Fixed extra padding when using `Pretty` formatter ([#1275]) - **chrono**: Removed extra trailing space with `ChronoLocal` time formatter ([#1103]) ### Added - **fmt**: Added `FmtContext::current_span()` method, returning the current span ([#1290]) - **fmt**: `FmtSpan` variants may now be combined using the `|` operator for more granular control over what span events are generated ([#1277]) Thanks to new contributors @cratelyn, @dignati, and @zicklag, as well as @Folyd, @matklad, and @najamelan, for contributing to this release!
1 parent 742b214 commit 27bcb07

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# 0.2.17 (March 12, 2020)
2+
3+
### Fixed
4+
5+
- **fmt**: `Pretty` formatter now honors `with_ansi(false)` to disable ANSI
6+
terminal formatting ([#1240])
7+
- **fmt**: Fixed extra padding when using `Pretty` formatter ([#1275])
8+
- **chrono**: Removed extra trailing space with `ChronoLocal` time formatter
9+
([#1103])
10+
11+
### Added
12+
13+
- **fmt**: Added `FmtContext::current_span()` method, returning the current span
14+
([#1290])
15+
- **fmt**: `FmtSpan` variants may now be combined using the `|` operator for
16+
more granular control over what span events are generated ([#1277])
17+
18+
Thanks to new contributors @cratelyn, @dignati, and @zicklag, as well as @Folyd,
19+
@matklad, and @najamelan, for contributing to this release!
20+
21+
[#1240]: https://github.com/tokio-rs/tracing/pull/1240
22+
[#1275]: https://github.com/tokio-rs/tracing/pull/1275
23+
[#1103]: https://github.com/tokio-rs/tracing/pull/1103
24+
[#1290]: https://github.com/tokio-rs/tracing/pull/1290
25+
[#1277]: https://github.com/tokio-rs/tracing/pull/1277
26+
127
# 0.2.16 (February 19, 2020)
228

329
### Fixed

tracing-subscriber/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

tracing-subscriber/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
2121
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
2222
[crates-url]: https://crates.io/crates/tracing-subscriber
2323
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
24-
[docs-url]: https://docs.rs/tracing-subscriber/0.2.16
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.17
2525
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2626
[docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber
2727
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

tracing-subscriber/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
//! [`env_logger` crate]: https://crates.io/crates/env_logger
6868
//! [`parking_lot`]: https://crates.io/crates/parking_lot
6969
//! [`registry`]: registry/index.html
70-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.16")]
70+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.17")]
7171
#![doc(
7272
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
7373
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)