Skip to content

Commit

Permalink
prepare for 0.6.1 release (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Mar 7, 2019
1 parent 8fa6240 commit 2ae080e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -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
Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit 2ae080e

Please sign in to comment.