Skip to content

Commit b9da544

Browse files
authored
subscriber: prepare to release v0.3.11 (#2062)
# 0.3.11 (Apr 9, 2022) This is a bugfix release for the `Filter` implementation for `EnvFilter` added in [v0.3.10]. ### Fixed - **env-filter**: Added missing `Filter::on_record` callback to `EnvFilter`'s `Filter` impl ([#2058]) - **env-filter**: Fixed method resolution issues when calling `EnvFilter` methods with both the `Filter` and `Layer` traits in scope ([#2057]) - **env-filter**: Fixed `EnvFilter::builder().parse()` and other parsing methods returning an error when parsing an empty string ([#2052]) Thanks to new contributor @Ma124 for contributing to this release! [v0.3.10]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.10 [#2058]: #2058 [#2057]: #2057 [#2052]: #2052
1 parent 40fb304 commit b9da544

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# 0.3.11 (Apr 9, 2022)
2+
3+
This is a bugfix release for the `Filter` implementation for `EnvFilter` added
4+
in [v0.3.10].
5+
6+
### Fixed
7+
8+
- **env-filter**: Added missing `Filter::on_record` callback to `EnvFilter`'s
9+
`Filter` impl ([#2058])
10+
- **env-filter**: Fixed method resolution issues when calling `EnvFilter`
11+
methods with both the `Filter` and `Layer` traits in scope ([#2057])
12+
- **env-filter**: Fixed `EnvFilter::builder().parse()` and other parsing methods
13+
returning an error when parsing an empty string ([#2052])
14+
15+
Thanks to new contributor @Ma124 for contributing to this release!
16+
17+
[v0.3.10]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.10
18+
[#2058]: https://github.com/tokio-rs/tracing/pull/2058
19+
[#2057]: https://github.com/tokio-rs/tracing/pull/2057
20+
[#2052]: https://github.com/tokio-rs/tracing/pull/2052
21+
122
# 0.3.10 (Apr 1, 2022)
223

324
This release adds several new features, including a `Filter` implementation and

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