Skip to content

Commit 9ffe00d

Browse files
committed
Release version 0.8.0
1 parent 2b33c97 commit 9ffe00d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.7.1" # remember to update html_root_url
4+
version = "0.8.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
@@ -22,7 +22,7 @@ It must be added along with `log` to the project dependencies:
2222
```toml
2323
[dependencies]
2424
log = "0.4.0"
25-
env_logger = "0.7.1"
25+
env_logger = "0.8.0"
2626
```
2727

2828
`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.
@@ -59,7 +59,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
5959
log = "0.4.0"
6060

6161
[dev-dependencies]
62-
env_logger = "0.7.1"
62+
env_logger = "0.8.0"
6363
```
6464

6565
```rust

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
#![doc(
233233
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
234234
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico",
235-
html_root_url = "https://docs.rs/env_logger/0.7.1"
235+
html_root_url = "https://docs.rs/env_logger/0.8.0"
236236
)]
237237
#![cfg_attr(test, deny(warnings))]
238238
// When compiled for the rustc compiler itself we want to make sure that this is
@@ -1178,7 +1178,7 @@ pub fn builder() -> Builder {
11781178
///
11791179
/// The builder can be configured before being initialized.
11801180
#[deprecated(
1181-
since = "0.7.2",
1181+
since = "0.8.0",
11821182
note = "Prefer `env_logger::Builder::from_env()` instead."
11831183
)]
11841184
pub fn from_env<'a, E>(env: E) -> Builder

0 commit comments

Comments
 (0)