diff --git a/CHANGELOG.md b/CHANGELOG.md index 297dcec1..cb73af76 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.1] - 2023-11-10 + ## [0.10.0] - 2022-11-24 MSRV changed to 1.60 to hide optional dependencies @@ -40,7 +42,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.0...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.10.1...HEAD +[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 [0.9.2]: https://github.com/rust-cli/env_logger/compare/v0.9.0...v0.9.2 diff --git a/Cargo.lock b/Cargo.lock index ef3b2414..2bb97a6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,7 +31,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "env_logger" -version = "0.10.0" +version = "0.10.1" dependencies = [ "humantime", "is-terminal", diff --git a/Cargo.toml b/Cargo.toml index 729f7af5..7a1ae457 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_logger" -version = "0.10.0" +version = "0.10.1" description = """ A logging implementation for `log` which is configured via an environment variable.