Skip to content

Commit

Permalink
Merge pull request #112 from KodrAus/cargo/0.6.0
Browse files Browse the repository at this point in the history
Prepare for 0.6.0 release
  • Loading branch information
KodrAus authored Nov 11, 2018
2 parents fa6a7df + 1be278d commit ebf4829
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "env_logger"
version = "0.5.13" # remember to update html_root_url
version = "0.6.0" # 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
Original file line number Diff line number Diff line change
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.5.13"
env_logger = "0.6.0"
```

`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 = { version = "0.5.13", default-features = false }
env_logger = { version = "0.6.0", default-features = false }
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@

#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "https://docs.rs/env_logger/0.5.13")]
html_root_url = "https://docs.rs/env_logger/0.6.0")]
#![cfg_attr(test, deny(warnings))]

// When compiled for the rustc compiler itself we want to make sure that this is
Expand Down

0 comments on commit ebf4829

Please sign in to comment.