Skip to content

Commit 424f031

Browse files
authored
Merge pull request #143 from KodrAus/cargo/0.7.0
Prepare for 0.7.0 release
2 parents bfac641 + 058655e commit 424f031

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,7 +1,7 @@
11
[package]
22
name = "env_logger"
33
edition = "2018"
4-
version = "0.6.2" # remember to update html_root_url
4+
version = "0.7.0" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
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.6.2"
19+
env_logger = "0.7.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.
@@ -53,7 +53,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
5353
log = "0.4.0"
5454

5555
[dev-dependencies]
56-
env_logger = "0.6.2"
56+
env_logger = "0.7.0"
5757
```
5858

5959
```rust

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@
237237
#![doc(
238238
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
239239
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico",
240-
html_root_url = "https://docs.rs/env_logger/0.6.2"
240+
html_root_url = "https://docs.rs/env_logger/0.7.0"
241241
)]
242242
#![cfg_attr(test, deny(warnings))]
243243
// When compiled for the rustc compiler itself we want to make sure that this is

0 commit comments

Comments
 (0)