From 7929b7fc3df3223320c3cdd346138965f2c7e52f Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 17 Jan 2024 19:46:44 -0600 Subject: [PATCH] chore: Release env_logger version 0.10.2 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 313b86f8..6b911e5e 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 2bb97a6a..3b0e0086 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 7a1ae457..08da79ce 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.