diff --git a/CHANGELOG.md b/CHANGELOG.md index 01cd39b..aaffd51 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.6] - 2024-12-20 + ### Features - Opt-in file and line rendering @@ -123,7 +125,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.5...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/v0.11.6...HEAD +[0.11.6]: https://github.com/rust-cli/env_logger/compare/v0.11.5...v0.11.6 [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 diff --git a/Cargo.lock b/Cargo.lock index 8c46f50..10cc5bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,7 +67,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "env_filter" -version = "0.1.2" +version = "0.1.3" dependencies = [ "log", "regex", @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.5" +version = "0.11.6" dependencies = [ "anstream", "anstyle", diff --git a/Cargo.toml b/Cargo.toml index 185115d..1d09740 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,7 @@ zero_sized_map_values = "warn" [package] name = "env_logger" -version = "0.11.5" +version = "0.11.6" 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 a799457..3f07850 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.3] - 2024-12-20 + ## [0.1.2] - 2024-07-25 ## [0.1.1] - 2024-07-23 @@ -18,7 +20,8 @@ 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.2...HEAD +[Unreleased]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.3...HEAD +[0.1.3]: https://github.com/rust-cli/env_logger/compare/env_filter-v0.1.2...env_filter-v0.1.3 [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 1926f58..538ea1e 100644 --- a/crates/env_filter/Cargo.toml +++ b/crates/env_filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_filter" -version = "0.1.2" +version = "0.1.3" description = """ Filter log events using environment variables """