Skip to content

Commit 074f693

Browse files
committed
subscriber: prepare to release 0.2.14
Fixed - **registry**: Fixed `Registry::new` allocating an excessively large amount of memory, most of which would never be used ([#1064]) Changed - **registry**: Improved `new_span` performance by reusing `HashMap` allocations for `Extensions` ([#1064]) - **registry**: Significantly improved the performance of `Registry::enter` and `Registry::exit` ([#1058]) [#1064]: #1064 [#1058]: #1058
1 parent a6e7d5e commit 074f693

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.2.14 (October 22, 2020)
2+
3+
### Fixed
4+
5+
- **registry**: Fixed `Registry::new` allocating an excessively large amount of
6+
memory, most of which would never be used ([#1064])
7+
8+
### Changed
9+
10+
- **registry**: Improved `new_span` performance by reusing `HashMap` allocations
11+
for `Extensions` ([#1064])
12+
- **registry**: Significantly improved the performance of `Registry::enter` and
13+
`Registry::exit` ([#1058])
14+
15+
[#1064]: https://github.com/tokio-rs/tracing/pull/1064
16+
[#1058]: https://github.com/tokio-rs/tracing/pull/1058
17+
118
# 0.2.13 (October 7, 2020)
219

320
### Changed

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.13"
3+
version = "0.2.14"
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.13
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.14
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.13")]
70+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.14")]
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)