Skip to content

Commit 0f53c8d

Browse files
committed
Release version 0.8.2
1 parent 26e821b commit 0f53c8d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "env_logger"
33
edition = "2018"
4-
version = "0.8.1" # remember to update html_root_url
4+
version = "0.8.2" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
readme = "README.md"

README.md

+2-2
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.8.1"
25+
env_logger = "0.8.2"
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.8.1"
62+
env_logger = "0.8.2"
6363
```
6464

6565
```rust

src/lib.rs

+1-1
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.8.1"
235+
html_root_url = "https://docs.rs/env_logger/0.8.2"
236236
)]
237237
#![cfg_attr(test, deny(warnings))]
238238
// When compiled for the rustc compiler itself we want to make sure that this is

0 commit comments

Comments
 (0)