Skip to content

Commit

Permalink
Release version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Oct 16, 2020
1 parent 2b33c97 commit 9ffe00d
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,7 +1,7 @@
[package]
name = "env_logger"
edition = "2018"
version = "0.7.1" # remember to update html_root_url
version = "0.8.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
Expand Up @@ -22,7 +22,7 @@ It must be added along with `log` to the project dependencies:
```toml
[dependencies]
log = "0.4.0"
env_logger = "0.7.1"
env_logger = "0.8.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 @@ -59,7 +59,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.7.1"
env_logger = "0.8.0"
```

```rust
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -232,7 +232,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.7.1"
html_root_url = "https://docs.rs/env_logger/0.8.0"
)]
#![cfg_attr(test, deny(warnings))]
// When compiled for the rustc compiler itself we want to make sure that this is
Expand Down Expand Up @@ -1178,7 +1178,7 @@ pub fn builder() -> Builder {
///
/// The builder can be configured before being initialized.
#[deprecated(
since = "0.7.2",
since = "0.8.0",
note = "Prefer `env_logger::Builder::from_env()` instead."
)]
pub fn from_env<'a, E>(env: E) -> Builder
Expand Down

0 comments on commit 9ffe00d

Please sign in to comment.