diff --git a/CHANGELOG.md b/CHANGELOG.md index 313b86f..6b911e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.10.2] - 2024-01-18 + ### Performance - Avoid extra UTF-8 validation performed in some cases @@ -59,7 +61,8 @@ To open room for changing dependencies: - Added a method to print the module instead of the target -[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.10.1...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.10.2...HEAD +[0.10.2]: https://github.com/rust-cli/env_logger/compare/v0.10.1...v0.10.2 [0.10.1]: https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0 [0.9.3]: https://github.com/rust-cli/env_logger/compare/v0.9.2...v0.9.3 diff --git a/Cargo.lock b/Cargo.lock index 2bb97a6..3b0e008 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,7 +31,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "env_logger" -version = "0.10.1" +version = "0.10.2" dependencies = [ "humantime", "is-terminal", diff --git a/Cargo.toml b/Cargo.toml index 7a1ae45..08da79c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_logger" -version = "0.10.1" +version = "0.10.2" description = """ A logging implementation for `log` which is configured via an environment variable.