Skip to content

Commit ebf4829

Browse files
authored
Merge pull request #112 from KodrAus/cargo/0.6.0
Prepare for 0.6.0 release
2 parents fa6a7df + 1be278d commit ebf4829

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "env_logger"
3-
version = "0.5.13" # remember to update html_root_url
3+
version = "0.6.0" # remember to update html_root_url
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ It must be added along with `log` to the project dependencies:
1616
```toml
1717
[dependencies]
1818
log = "0.4.0"
19-
env_logger = "0.5.13"
19+
env_logger = "0.6.0"
2020
```
2121

2222
`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
5252
log = "0.4.0"
5353

5454
[dev-dependencies]
55-
env_logger = { version = "0.5.13", default-features = false }
55+
env_logger = { version = "0.6.0", default-features = false }
5656
```
5757

5858
```rust

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
212212
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
213213
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
214-
html_root_url = "https://docs.rs/env_logger/0.5.13")]
214+
html_root_url = "https://docs.rs/env_logger/0.6.0")]
215215
#![cfg_attr(test, deny(warnings))]
216216

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

0 commit comments

Comments
 (0)