diff --git a/CHANGELOG.md b/CHANGELOG.md index 16cf102..716333a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ Unreleased ========== +0.7.1 (2024-12-15) +================== + +- Add syslog v7 support (thanks [@BlackDex]!) + 0.7.0 (2024-10-20) ================== @@ -441,3 +446,4 @@ First release, version 0.1.0. [@vorner]: https://github.com/vorner [@EasyPost]: https://github.com/EasyPost [@faern]: https://github.com/faern +[@BlackDex]: https://github.com/BlackDex diff --git a/Cargo.toml b/Cargo.toml index d47facb..503d26d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fern" # Remember to update html_root_url in src/lib.rs with each version. -version = "0.7.0" +version = "0.7.1" authors = ["David Ross "] description = "Simple, efficient logging" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 5511aa0..ffced19 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.7.0")] +#![doc(html_root_url = "https://docs.rs/fern/0.7.1")] //! Efficient, configurable logging in Rust. //! //! # fern 0.4.4, 0.5.\*, 0.6.\* security warning - `colored` feature + global allocator