diff --git a/Cargo.toml b/Cargo.toml index a7a3a0db..4da57985 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_logger" -version = "0.6.0" # remember to update html_root_url +version = "0.6.1" # remember to update html_root_url authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/README.md b/README.md index 437dd66f..d824f00c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ It must be added along with `log` to the project dependencies: ```toml [dependencies] log = "0.4.0" -env_logger = "0.6.0" +env_logger = "0.6.1" ``` `env_logger` must be initialized as early as possible in the project. After it's initialized, you can use the `log` macros to do actual logging. @@ -52,7 +52,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t log = "0.4.0" [dev-dependencies] -env_logger = "0.6.0" +env_logger = "0.6.1" ``` ```rust diff --git a/src/lib.rs b/src/lib.rs index 5a5a77c3..185b4dc3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -236,7 +236,7 @@ #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico", - html_root_url = "https://docs.rs/env_logger/0.6.0")] + html_root_url = "https://docs.rs/env_logger/0.6.1")] #![cfg_attr(test, deny(warnings))] // When compiled for the rustc compiler itself we want to make sure that this is @@ -604,7 +604,7 @@ impl Builder { /// environment variable. /// /// See the module documentation for more details. - #[deprecated(since = "0.6.0", note = "use `parse_filters` instead.")] + #[deprecated(since = "0.6.1", note = "use `parse_filters` instead.")] pub fn parse(&mut self, filters: &str) -> &mut Self { self.parse_filters(filters) }