diff --git a/CHANGELOG.md b/CHANGELOG.md index f849eeff..266e24a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ Changes to this crate are tracked via [GitHub Releases][releases]. -[releases]: https://github.com/sebasmagri/env_logger/releases +[releases]: https://github.com/env-logger-rs/env_logger/releases diff --git a/Cargo.toml b/Cargo.toml index 306120f2..837c72b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "env_logger" edition = "2018" -version = "0.8.0" # remember to update html_root_url +version = "0.8.1" # remember to update html_root_url authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" readme = "README.md" -repository = "https://github.com/sebasmagri/env_logger/" +repository = "https://github.com/env-logger-rs/env_logger/" documentation = "https://docs.rs/env_logger" description = """ A logging implementation for `log` which is configured via an environment diff --git a/README.md b/README.md index 98dd6198..1edd0e34 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # env_logger -[![Build Status](https://travis-ci.org/sebasmagri/env_logger.svg?branch=master)](https://travis-ci.org/sebasmagri/env_logger) +[![Build Status](https://travis-ci.org/env-logger-rs/env_logger.svg?branch=master)](https://travis-ci.org/env-logger-rs/env_logger) [![Maintenance](https://img.shields.io/badge/maintenance-actively%20maintained-brightgreen.svg)](https://github.com/env-logger-rs/env_logger) [![crates.io](https://img.shields.io/crates/v/env_logger.svg)](https://crates.io/crates/env_logger) [![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: ```toml [dependencies] log = "0.4.0" -env_logger = "0.8.0" +env_logger = "0.8.1" ``` `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 [2018-11-03T06:09:06Z INFO default] starting up ``` -`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. +`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. ### In tests @@ -59,7 +59,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t log = "0.4.0" [dev-dependencies] -env_logger = "0.8.0" +env_logger = "0.8.1" ``` ```rust diff --git a/src/lib.rs b/src/lib.rs index 552a6d95..4fa40550 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -232,7 +232,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/static/images/favicon.ico", - html_root_url = "https://docs.rs/env_logger/0.8.0" + html_root_url = "https://docs.rs/env_logger/0.8.1" )] #![cfg_attr(test, deny(warnings))] // When compiled for the rustc compiler itself we want to make sure that this is