Skip to content

Commit c889311

Browse files
authored
subscriber: prepare to release 0.2.0-alpha.5 (#555)
### Added: - **env_filter**: Documentation for filtering directives (#554) - **registry**, **env_filter**: Updated `smallvec` dependency to 0.1 (#543) ### Fixed: - **registry**: Fixed a memory leak in the slab used to store per-span data (3c35048) - **Layer**: Fixed `Layered` subscribers failing to downcast to their own type (#549) - **fmt**: Fixed a panic when multiple layers insert `FormattedFields` extensions from the same formatter type (1c3bb70) - **fmt**: Fixed `fmt::Layer::on_record` inserting a new `FormattedFields` when formatted fields for a span already exist (1c3bb70) Signed-off-by: Eliza Weisman <[email protected]>
1 parent 3c35048 commit c889311

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
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.4"
81+
tracing-subscriber = "0.2.0-alpha.5"
8282
```
8383

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

tracing-subscriber/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 0.2.0-alpha.5 (January 31, 2020)
2+
3+
### Added
4+
5+
- **env_filter**: Documentation for filtering directives (#554)
6+
- **registry**, **env_filter**: Updated `smallvec` dependency to 0.1 (#543)
7+
8+
### Fixed
9+
10+
- **registry**: Fixed a memory leak in the slab used to store per-span data
11+
(3c35048)
12+
- **Layer**: Fixed `Layered` subscribers failing to downcast to their own type
13+
(#549)
14+
- **fmt**: Fixed a panic when multiple layers insert `FormattedFields`
15+
extensions from the same formatter type (1c3bb70)
16+
- **fmt**: Fixed `fmt::Layer::on_record` inserting a new `FormattedFields` when
17+
formatted fields for a span already exist (1c3bb70)
18+
119
# 0.2.0-alpha.4 (January 11, 2020)
220

321
### 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.0-alpha.4"
3+
version = "0.2.0-alpha.5"
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.4
20+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5
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.4")]
54+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.5")]
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.4"
96+
tracing-subscriber = "0.2.0-alpha.5"
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)