Skip to content

Commit 4e39b74

Browse files
authored
Merge pull request #86 from Eijebong/regex
Update regex to 1.0 and bump version
2 parents 6b672d8 + e2a933e commit 4e39b74

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "env_logger"
3-
version = "0.5.9" # remember to update html_root_url
3+
version = "0.5.10" # remember to update html_root_url
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -15,7 +15,7 @@ keywords = ["logging", "log", "logger"]
1515

1616
[dependencies]
1717
log = { version = "0.4.0", features = ["std"] }
18-
regex = { version = "0.2", optional = true }
18+
regex = { version = "1.0", optional = true }
1919
termcolor = "0.3"
2020
humantime = "1.1.0"
2121
atty = "0.2"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ It must be added along with `log` to the project dependencies:
1818
```toml
1919
[dependencies]
2020
log = "0.4.0"
21-
env_logger = "0.5.9"
21+
env_logger = "0.5.10"
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.
@@ -54,7 +54,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
5454
log = "0.4.0"
5555

5656
[dev-dependencies]
57-
env_logger = "0.5.9"
57+
env_logger = "0.5.10"
5858
```
5959

6060
```rust

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
183183
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
184184
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
185-
html_root_url = "https://docs.rs/env_logger/0.5.9")]
185+
html_root_url = "https://docs.rs/env_logger/0.5.10")]
186186
#![cfg_attr(test, deny(warnings))]
187187

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

0 commit comments

Comments
 (0)