Skip to content

Commit 18f358c

Browse files
authored
subscriber: prepare to release v0.3.4 (#1800)
# 0.3.4 (Dec 23, 2021) This release contains bugfixes for the `fmt` module, as well as documentation improvements. ### Fixed - **fmt**: Fixed `fmt` not emitting log lines when timestamp formatting fails ([#1689]) - **fmt**: Fixed double space before thread IDs with `Pretty` formatter ([#1778]) - Several documentation improvements ([#1608], [#1699], [#1701]) [#1689]: #1689 [#1778]: #1778 [#1608]: #1608 [#1699]: #1699 [#1701]: #1701 Thanks to new contributors @Swatinem and @rukai for contributing to this release!
1 parent a49f7d6 commit 18f358c

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 0.3.4 (Dec 23, 2021)
2+
3+
This release contains bugfixes for the `fmt` module, as well as documentation
4+
improvements.
5+
6+
### Fixed
7+
8+
- **fmt**: Fixed `fmt` not emitting log lines when timestamp formatting fails
9+
([#1689])
10+
- **fmt**: Fixed double space before thread IDs with `Pretty` formatter
11+
([#1778])
12+
- Several documentation improvements ([#1608], [#1699], [#1701])
13+
14+
[#1689]: https://github.com/tokio-rs/tracing/pull/1689
15+
[#1778]: https://github.com/tokio-rs/tracing/pull/1778
16+
[#1608]: https://github.com/tokio-rs/tracing/pull/1608
17+
[#1699]: https://github.com/tokio-rs/tracing/pull/1699
18+
[#1701]: https://github.com/tokio-rs/tracing/pull/1701
19+
20+
Thanks to new contributors @Swatinem and @rukai for contributing to this
21+
release!
22+
123
# 0.3.3 (Nov 29, 2021)
224

325
This release fixes a pair of regressions in `tracing-subscriber`'s `fmt` module.

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.3"
3+
version = "0.3.4"
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.1
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.3.3
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
@@ -126,7 +126,7 @@
126126
//! [`parking_lot`]: https://crates.io/crates/parking_lot
127127
//! [`time` crate]: https://crates.io/crates/time
128128
//! [`liballoc`]: https://doc.rust-lang.org/alloc/index.html
129-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.1")]
129+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.3")]
130130
#![doc(
131131
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
132132
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)