Skip to content

Commit 2c04025

Browse files
committed
subscriber: prepare to release 0.3.5
# 0.3.5 (Dec 29, 2021) This release re-enables `RUST_LOG` filtering in `tracing_subscriber::fmt`'s default initialization methods, and adds an `OffsetLocalTime` formatter for using local timestamps with the `time` crate. ### Added - **fmt**: Added `OffsetLocalTime` formatter to `fmt::time` for formatting local timestamps with a fixed offset ([#1772]) ### Fixed - **fmt**: Added a `Targets` filter to `fmt::init()` and `fmt::try_init()` when the "env-filter" feature is disabled, so that `RUST_LOG` is still honored ([#1781]) Thanks to @marienz and @ishitatsuyuki for contributing to this release! [#1772]: #1772 [#1781]: #1781
1 parent c60c530 commit 2c04025

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1-
# 0.3.4 (Dec 23, 2021)
1+
# 0.3.5 (Dec 29, 2021)
2+
3+
This release re-enables `RUST_LOG` filtering in `tracing_subscriber::fmt`'s
4+
default initialization methods, and adds an `OffsetLocalTime` formatter for
5+
using local timestamps with the `time` crate.
6+
7+
### Added
8+
9+
- **fmt**: Added `OffsetLocalTime` formatter to `fmt::time` for formatting local
10+
timestamps with a fixed offset ([#1772])
11+
12+
### Fixed
13+
14+
- **fmt**: Added a `Targets` filter to `fmt::init()` and `fmt::try_init()` when
15+
the "env-filter" feature is disabled, so that `RUST_LOG` is still honored
16+
([#1781])
17+
18+
Thanks to @marienz and @ishitatsuyuki for contributing to this release!
19+
20+
[#1772]: https://github.com/tokio-rs/tracing/pull/1772
21+
[#1781]: https://github.com/tokio-rs/tracing/pull/1781
22+
23+
# 0.3.4 (Dec 23, 2021)
224

325
This release contains bugfixes for the `fmt` module, as well as documentation
426
improvements.

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