Skip to content

Commit 26e821b

Browse files
committed
Update repository links and release 0.8.1
1 parent 9ffe00d commit 26e821b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Changes to this crate are tracked via [GitHub Releases][releases].
22

3-
[releases]: https://github.com/sebasmagri/env_logger/releases
3+
[releases]: https://github.com/env-logger-rs/env_logger/releases

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "env_logger"
33
edition = "2018"
4-
version = "0.8.0" # remember to update html_root_url
4+
version = "0.8.1" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
readme = "README.md"
8-
repository = "https://github.com/sebasmagri/env_logger/"
8+
repository = "https://github.com/env-logger-rs/env_logger/"
99
documentation = "https://docs.rs/env_logger"
1010
description = """
1111
A logging implementation for `log` which is configured via an environment

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# env_logger
22

3-
[![Build Status](https://travis-ci.org/sebasmagri/env_logger.svg?branch=master)](https://travis-ci.org/sebasmagri/env_logger)
3+
[![Build Status](https://travis-ci.org/env-logger-rs/env_logger.svg?branch=master)](https://travis-ci.org/env-logger-rs/env_logger)
44
[![Maintenance](https://img.shields.io/badge/maintenance-actively%20maintained-brightgreen.svg)](https://github.com/env-logger-rs/env_logger)
55
[![crates.io](https://img.shields.io/crates/v/env_logger.svg)](https://crates.io/crates/env_logger)
66
[![Documentation](https://docs.rs/env_logger/badge.svg)](https://docs.rs/env_logger)
@@ -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.0"
25+
env_logger = "0.8.1"
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.
@@ -48,7 +48,7 @@ $ RUST_LOG=info ./main
4848
[2018-11-03T06:09:06Z INFO default] starting up
4949
```
5050

51-
`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/sebasmagri/env_logger/tree/master/examples) for more approaches.
51+
`env_logger` can be configured in other ways besides an environment variable. See [the examples](https://github.com/env-logger-rs/env_logger/tree/master/examples) for more approaches.
5252

5353
### In tests
5454

@@ -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.0"
62+
env_logger = "0.8.1"
6363
```
6464

6565
```rust

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.0"
235+
html_root_url = "https://docs.rs/env_logger/0.8.1"
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)