diff --git a/CHANGELOG.md b/CHANGELOG.md index da8d65b9..297dcec1 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.0] - 2022-11-24 + MSRV changed to 1.60 to hide optional dependencies ### Fixes @@ -38,7 +40,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.9.3...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.10.0...HEAD +[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 [0.9.0]: https://github.com/rust-cli/env_logger/compare/v0.8.4...v0.9.0 diff --git a/Cargo.lock b/Cargo.lock index 4caf4b5a..647e92af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,7 +35,7 @@ version = "0.0.0" [[package]] name = "env_logger" -version = "0.9.3" +version = "0.10.0" dependencies = [ "humantime", "is-terminal", diff --git a/Cargo.toml b/Cargo.toml index 8f0e71dd..64b9ee9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "env_logger" -version = "0.9.3" +version = "0.10.0" description = """ A logging implementation for `log` which is configured via an environment variable.