diff --git a/Cargo.toml b/Cargo.toml index 4da57985..2cb1587c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "env_logger" -version = "0.6.1" # remember to update html_root_url +version = "0.6.2" # remember to update html_root_url authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" @@ -38,4 +38,4 @@ name = "init-twice-retains-filter" harness = false [features] -default = ["termcolor", "atty", "humantime", "regex"] \ No newline at end of file +default = ["termcolor", "atty", "humantime", "regex"] diff --git a/README.md b/README.md index 9dafbc8e..8dc92f12 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.1" +env_logger = "0.6.2" ``` `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. @@ -54,7 +54,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.1" +env_logger = "0.6.2" ``` ```rust diff --git a/src/lib.rs b/src/lib.rs index 52bda751..37c43229 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -238,7 +238,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.1")] + html_root_url = "https://docs.rs/env_logger/0.6.2")] #![cfg_attr(test, deny(warnings))] // When compiled for the rustc compiler itself we want to make sure that this is