Skip to content

Commit be42228

Browse files
committed
bump to 0.5.0-rc.2
1 parent 0cb3860 commit be42228

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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.0-rc.1" # remember to update html_root_url
3+
version = "0.5.0-rc.2" # 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
@@ -17,8 +17,8 @@ It must be added along with `log` to the project dependencies:
1717

1818
```toml
1919
[dependencies]
20-
log = "0.4.0-rc.1"
21-
env_logger = "0.5.0-rc.1"
20+
log = "0.4.0"
21+
env_logger = "0.5.0-rc.2"
2222
```
2323

2424
`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.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
143143
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
144144
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
145-
html_root_url = "https://docs.rs/env_logger/0.5.0-rc.1")]
145+
html_root_url = "https://docs.rs/env_logger/0.5.0-rc.2")]
146146
#![cfg_attr(test, deny(warnings))]
147147

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

0 commit comments

Comments
 (0)