diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a56b44..8aba5d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +0.5.2 (2018-01-02) +================== + +- Re-add compatibility for rust versions 1.16.0+, and add CI testing + with rustc 1.16.0 to ensure this is kept in the future. +- Add some more general documentation updates and clarity increases. +- Add a CHANGELOG.md which mirrors git tag releases. +- Update documentation links to point to docs.rs rather than custom + hosted documentation. +- Fix ColoredLevelConfig::default being an inherent method rather than + an implementation of the Default trait. +- Add direct support for the syslog crate under the "syslog-3" + feature flag. + - Add a module worth of documentation for using fern with syslog. + 0.5.1 (2017-12-26) ================== diff --git a/Cargo.toml b/Cargo.toml index 4154531..08c1aa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "fern" # Remember to update html_root_url in src/lib.rs with each version. -version = "0.5.1" +version = "0.5.2" authors = ["David Ross "] description = "Simple, efficient logging" diff --git a/src/lib.rs b/src/lib.rs index ec77780..54cb87a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/fern/0.5.1")] +#![doc(html_root_url = "https://docs.rs/fern/0.5.2")] //! Efficient, configurable logging in Rust. //! //! # Depending on fern