Skip to content

Commit 2974ae9

Browse files
authored
subscriber: prepare to release v0.3.9 (#1938)
# 0.3.9 (Feb 17, 2022) This release updates the minimum supported Rust version (MSRV) to 1.49.0, and updates the (optional) dependency on `parking_lot` to v0.12. ### Changed - Updated minimum supported Rust version (MSRV) to 1.49.0 ([#1913]) - `parking_lot`: updated to v0.12 ([008339d]) ### Added - **fmt**: Documentation improvements ([#1926], [#1927]) [#1913]: #1913 [#1926]: #1926 [#1927]: #1927 [008339d]: 008339d
1 parent 008339d commit 2974ae9

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 0.3.9 (Feb 17, 2022)
2+
3+
This release updates the minimum supported Rust version (MSRV) to 1.49.0, and
4+
updates the (optional) dependency on `parking_lot` to v0.12.
5+
6+
### Changed
7+
8+
- Updated minimum supported Rust version (MSRV) to 1.49.0 ([#1913])
9+
- `parking_lot`: updated to v0.12 ([008339d])
10+
11+
### Added
12+
13+
- **fmt**: Documentation improvements ([#1926], [#1927])
14+
15+
[#1913]: https://github.com/tokio-rs/tracing/pull/1913
16+
[#1926]: https://github.com/tokio-rs/tracing/pull/1926
17+
[#1927]: https://github.com/tokio-rs/tracing/pull/1927
18+
[008339d]: https://github.com/tokio-rs/tracing/commit/008339d1e8750ffe7b4634fc7789bda0c522424f
19+
120
# 0.3.8 (Feb 4, 2022)
221

322
This release adds *experimental* support for recording structured field

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.3.8"
3+
version = "0.3.9"
44
authors = [
55
"Eliza Weisman <eliza@buoyant.io>",
66
"David Barsky <me@davidbarsky.com>",

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.3.8
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.3.9
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
@@ -160,7 +160,7 @@
160160
//! [`time` crate]: https://crates.io/crates/time
161161
//! [`libstd`]: https://doc.rust-lang.org/std/index.html
162162
//! [`liballoc`]: https://doc.rust-lang.org/alloc/index.html
163-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.8")]
163+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.9")]
164164
#![doc(
165165
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
166166
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)