File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " env_logger"
3
- version = " 0.6.0 " # remember to update html_root_url
3
+ version = " 0.6.1 " # remember to update html_root_url
4
4
authors = [" The Rust Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ It must be added along with `log` to the project dependencies:
16
16
``` toml
17
17
[dependencies ]
18
18
log = " 0.4.0"
19
- env_logger = " 0.6.0 "
19
+ env_logger = " 0.6.1 "
20
20
```
21
21
22
22
` 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.
@@ -52,7 +52,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
52
52
log = " 0.4.0"
53
53
54
54
[dev-dependencies ]
55
- env_logger = " 0.6.0 "
55
+ env_logger = " 0.6.1 "
56
56
```
57
57
58
58
``` rust
Original file line number Diff line number Diff line change 236
236
237
237
#![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
238
238
html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico" ,
239
- html_root_url = "https://docs.rs/env_logger/0.6.0 " ) ]
239
+ html_root_url = "https://docs.rs/env_logger/0.6.1 " ) ]
240
240
#![ cfg_attr( test, deny( warnings) ) ]
241
241
242
242
// When compiled for the rustc compiler itself we want to make sure that this is
@@ -604,7 +604,7 @@ impl Builder {
604
604
/// environment variable.
605
605
///
606
606
/// See the module documentation for more details.
607
- #[ deprecated( since = "0.6.0 " , note = "use `parse_filters` instead." ) ]
607
+ #[ deprecated( since = "0.6.1 " , note = "use `parse_filters` instead." ) ]
608
608
pub fn parse ( & mut self , filters : & str ) -> & mut Self {
609
609
self . parse_filters ( filters)
610
610
}
You can’t perform that action at this time.
0 commit comments