Skip to content

Commit 2a9da37

Browse files
committed
subscriber: prepare to release 0.2.0-alpha.6
Fixed - **fmt**: Fixed empty `{}` printed after spans with no fields (f079f2d) - **fmt**: Fixed inconsistent formatting when ANSI colors are disabled (506a482) - **fmt**: Fixed mis-aligned levels when ANSI colors are disabled (eba1adb) - Fixed warnings on nightly Rust compilers (#558) Signed-off-by: Eliza Weisman <[email protected]>
1 parent ee430b0 commit 2a9da37

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn main() {
7878
```toml
7979
[dependencies]
8080
tracing = "0.1"
81-
tracing-subscriber = "0.2.0-alpha.5"
81+
tracing-subscriber = "0.2.0-alpha.6"
8282
```
8383

8484
This subscriber will be used as the default in all threads for the remainder of the duration

tracing-error/src/layer.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ use tracing_subscriber::{
1414
/// when formatting the fields of each span in a trace. When no formatter is
1515
/// provided, the [default format] is used instead.
1616
///
17-
/// [`Layer`]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5/tracing_subscriber/layer/trait.Layer.html
17+
/// [`Layer`]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6/tracing_subscriber/layer/trait.Layer.html
1818
/// [`SpanTrace`]: ../struct.SpanTrace.html
19-
/// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5/tracing_subscriber/fmt/trait.FormatFields.html
20-
/// [default format]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5/tracing_subscriber/fmt/format/struct.DefaultFields.html
19+
/// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6/tracing_subscriber/fmt/trait.FormatFields.html
20+
/// [default format]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6/tracing_subscriber/fmt/format/struct.DefaultFields.html
2121
pub struct ErrorLayer<S, F = DefaultFields> {
2222
format: F,
2323

@@ -69,7 +69,7 @@ where
6969
{
7070
/// Returns a new `ErrorLayer` with the provided [field formatter].
7171
///
72-
/// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5/tracing_subscriber/fmt/trait.FormatFields.html
72+
/// [field formatter]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6/tracing_subscriber/fmt/trait.FormatFields.html
7373
pub fn new(format: F) -> Self {
7474
Self {
7575
format,

tracing-subscriber/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.2.0-alpha.6 (February 3, 2020)
2+
3+
### Fixed
4+
5+
- **fmt**: Fixed empty `{}` printed after spans with no fields (f079f2d)
6+
- **fmt**: Fixed inconsistent formatting when ANSI colors are disabled (506a482)
7+
- **fmt**: Fixed mis-aligned levels when ANSI colors are disabled (eba1adb)
8+
- Fixed warnings on nightly Rust compilers (#558)
9+
110
# 0.2.0-alpha.5 (January 31, 2020)
211

312
### Added

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.0-alpha.5"
3+
version = "0.2.0-alpha.6"
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
@@ -17,7 +17,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
1717
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
1818
[crates-url]: https://crates.io/crates/tracing-subscriber
1919
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
20-
[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5
20+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.6
2121
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2222
[docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber
2323
[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
@@ -51,7 +51,7 @@
5151
//! [`env_logger` crate]: https://crates.io/crates/env_logger
5252
//! [`parking_lot`]: https://crates.io/crates/parking_lot
5353
//! [`registry`]: registry/index.html
54-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.5")]
54+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.6")]
5555
#![cfg_attr(docsrs, feature(doc_cfg))]
5656
#![warn(
5757
missing_debug_implementations,

tracing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn main() {
9393
```toml
9494
[dependencies]
9595
tracing = "0.1"
96-
tracing-subscriber = "0.2.0-alpha.5"
96+
tracing-subscriber = "0.2.0-alpha.6"
9797
```
9898

9999
This subscriber will be used as the default in all threads for the remainder of the duration

0 commit comments

Comments
 (0)