diff --git a/CHANGELOG.md b/CHANGELOG.md index 9277980..9849e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.11.5] - 2024-07-25 + ## [0.11.4] - 2024-07-23 ## [0.11.3] - 2024-03-05 @@ -117,7 +119,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.11.4...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.11.5...HEAD +[0.11.5]: https://github.com/rust-cli/env_logger/compare/v0.11.4...v0.11.5 [0.11.4]: https://github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.4 [0.11.3]: https://github.com/rust-cli/env_logger/compare/v0.11.2...v0.11.3 [0.11.2]: https://github.com/rust-cli/env_logger/compare/v0.11.1...v0.11.2 diff --git a/Cargo.lock b/Cargo.lock index cc302b8..02126ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,7 +67,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "env_filter" -version = "0.1.1" +version = "0.1.2" dependencies = [ "log", "regex", @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.4" +version = "0.11.5" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index a6131b5..27ded76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -89,7 +89,7 @@ zero_sized_map_values = "warn" [package] name = "env_logger" -version = "0.11.4" +version = "0.11.5" description = """ A logging implementation for `log` which is configured via an environment variable. diff --git a/crates/env_filter/CHANGELOG.md b/crates/env_filter/CHANGELOG.md index 236ddad..a799457 100644 --- a/crates/env_filter/CHANGELOG.md +++ b/crates/env_filter/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.1.2] - 2024-07-25 + ## [0.1.1] - 2024-07-23 ### Features @@ -16,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [0.1.0] - 2024-01-19 -[Unreleased]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.1...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.2...HEAD +[0.1.2]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.1...env_filter-v0.1.2 [0.1.1]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.0...env_filter-v0.1.1 [0.1.0]: https://github.com/rust-cli/env_logger/compare/b4a2c304c16d1db4a2998f24c00e00c0f776113b...env_filter-v0.1.0 diff --git a/crates/env_filter/Cargo.toml b/crates/env_filter/Cargo.toml index c3395cb..f0988cb 100644 --- a/crates/env_filter/Cargo.toml +++ b/crates/env_filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_filter" -version = "0.1.1" +version = "0.1.2" description = """ Filter log events using environment variables """