Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

subscriber: prepare to release v0.3.17 #2571

Merged
merged 2 commits into from
Apr 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions tracing-subscriber/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# 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!

[#2566]: https://github.com/tokio-rs/tracing/pull/2566
[#2384]: https://github.com/tokio-rs/tracing/pull/2384
[#2378]: https://github.com/tokio-rs/tracing/pull/2378
[#2368]: https://github.com/tokio-rs/tracing/pull/2368
[#2548]: https://github.com/tokio-rs/tracing/pull/2548
[#2343]: https://github.com/tokio-rs/tracing/pull/2343
[#2532]: https://github.com/tokio-rs/tracing/pull/2532
[#2409]: https://github.com/tokio-rs/tracing/pull/2409

# 0.3.16 (October 6, 2022)

This release of `tracing-subscriber` fixes a regression introduced in
Expand Down
2 changes: 1 addition & 1 deletion tracing-subscriber/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracing-subscriber"
version = "0.3.16"
version = "0.3.17"
authors = [
"Eliza Weisman <[email protected]>",
"David Barsky <[email protected]>",
Expand Down