Skip to content

Commit 0114ec1

Browse files
authored
subscriber: prepare to release v0.3.17 (#2571)
# 0.3.17 (April 21, 2023) This release of `tracing-subscriber` fixes a build error when using `env-filter` with recent versions of the `regex` crate. It also introduces several minor API improvements. ### Fixed - **env-filter**: Add "unicode-case" and "unicode-perl" to the `regex` dependency, fixing a build error with recent versions of `regex` (#2566) - A number of minor documentation typos and other fixes (#2384, #2378, #2368, #2548) ### Added - **filter**: Add `fmt::Display` impl for `filter::Targets` (#2343) - **fmt**: Made `with_ansi(false)` no longer require the "ansi" feature, so that ANSI formatting escapes can be disabled without requiring ANSI-specific dependencies (#2532) ### Changed - **fmt**: Dim targets in the `Compact` formatter, matching the default formatter (#2409) Thanks to @keepsimple1, @andrewhalle, @LeoniePhiline, @LukeMathWalker, @howardjohn, @daxpedda, and @dbidwell94 for contributing to this release!
1 parent 53989b4 commit 0114ec1

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

tracing-subscriber/CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
# 0.3.17 (April 21, 2023)
2+
3+
This release of `tracing-subscriber` fixes a build error when using `env-filter`
4+
with recent versions of the `regex` crate. It also introduces several minor API
5+
improvements.
6+
7+
### Fixed
8+
9+
- **env-filter**: Add "unicode-case" and "unicode-perl" to the `regex`
10+
dependency, fixing a build error with recent versions of `regex` ([#2566])
11+
- A number of minor documentation typos and other fixes ([#2384], [#2378],
12+
[#2368], [#2548])
13+
14+
### Added
15+
16+
- **filter**: Add `fmt::Display` impl for `filter::Targets` ([#2343])
17+
- **fmt**: Made `with_ansi(false)` no longer require the "ansi" feature, so that
18+
ANSI formatting escapes can be disabled without requiring ANSI-specific
19+
dependencies ([#2532])
20+
21+
### Changed
22+
23+
- **fmt**: Dim targets in the `Compact` formatter, matching the default
24+
formatter ([#2409])
25+
26+
Thanks to @keepsimple1, @andrewhalle, @LeoniePhiline, @LukeMathWalker,
27+
@howardjohn, @daxpedda, and @dbidwell94 for contributing to this release!
28+
29+
[#2566]: https://github.com/tokio-rs/tracing/pull/2566
30+
[#2384]: https://github.com/tokio-rs/tracing/pull/2384
31+
[#2378]: https://github.com/tokio-rs/tracing/pull/2378
32+
[#2368]: https://github.com/tokio-rs/tracing/pull/2368
33+
[#2548]: https://github.com/tokio-rs/tracing/pull/2548
34+
[#2343]: https://github.com/tokio-rs/tracing/pull/2343
35+
[#2532]: https://github.com/tokio-rs/tracing/pull/2532
36+
[#2409]: https://github.com/tokio-rs/tracing/pull/2409
37+
138
# 0.3.16 (October 6, 2022)
239

340
This release of `tracing-subscriber` fixes a regression introduced in

tracing-subscriber/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.3.16"
3+
version = "0.3.17"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

0 commit comments

Comments
 (0)