diff --git a/tracing-log/CHANGELOG.md b/tracing-log/CHANGELOG.md index cf4c9a5e06..94f48f04b5 100644 --- a/tracing-log/CHANGELOG.md +++ b/tracing-log/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.2.0 (October 23rd, 2023) + +This release contains a breaking change: the removal of the `env_logger` +feature. Users who desire a similar experience should instead use +[`tracing_subscriber::fmt::Subscriber`] or [`tracing_subscriber::fmt::Layer`] +with the [`Targets`] or [`EnvFilter`] filters. + +### Breaking Changes + +- Remove `env_logger` feature ([#2771]) + +[#2771]: https://github.com/tokio-rs/tracing/pull/2771 +[`tracing_subscriber::fmt::Subscriber`]: https://docs.rs/tracing-subscriber/0.3.17/tracing_subscriber/fmt/struct.Subscriber.html +[`tracing_subscriber::fmt::Layer`]: https://docs.rs/tracing-subscriber/0.3.17/tracing_subscriber/fmt/struct.Layer.html +[`Targets`]: https://docs.rs/tracing-subscriber/0.3.17/tracing_subscriber/filter/targets/struct.Targets.html +[`EnvFilter`]: https://docs.rs/tracing-subscriber/0.3.17/tracing_subscriber/filter/struct.EnvFilter.html + # 0.1.4 (October 23rd, 2023) ### Changes diff --git a/tracing-log/Cargo.toml b/tracing-log/Cargo.toml index 240665f6b2..d17d35573b 100644 --- a/tracing-log/Cargo.toml +++ b/tracing-log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-log" -version = "0.1.4" +version = "0.2.0" authors = ["Tokio Contributors "] edition = "2018" repository = "https://github.com/tokio-rs/tracing"