From e8b2498ad716b8560d24ccf78b30eef577804cd5 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 3 Sep 2024 15:43:04 +0200 Subject: [PATCH] Prepare v0.11.8 (#985) --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 5 files changed, 29 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf3a3f5..93ec549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ + +### v0.11.8 (2024-09-03) + +#### Features + +* Add mTLS support ([#974]) +* Implement `accept_invalid_hostnames` for rustls ([#977]) +* Provide certificate chain for peer certificates when using `rustls` or `boring-tls` ([#976]) + +#### Changes + +* Make `HeaderName` comparisons via `PartialEq` case insensitive ([#980]) + +#### Misc + +* Fix clippy warnings ([#979]) +* Replace manual impl of `#[non_exhaustive]` for `InvalidHeaderName` ([#981]) + +[#974]: https://github.com/lettre/lettre/pull/974 +[#976]: https://github.com/lettre/lettre/pull/976 +[#977]: https://github.com/lettre/lettre/pull/977 +[#980]: https://github.com/lettre/lettre/pull/980 +[#981]: https://github.com/lettre/lettre/pull/981 + ### v0.11.7 (2024-04-23) diff --git a/Cargo.lock b/Cargo.lock index 86a09c5..0b20d06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1291,7 +1291,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lettre" -version = "0.11.7" +version = "0.11.8" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 2ba84a1..a1dd317 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre" # remember to update html_root_url and README.md (Cargo.toml example and deps.rs badge) -version = "0.11.7" +version = "0.11.8" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 452aeb9..69e28f8 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index b529f3a..ef6c1e6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -109,7 +109,7 @@ //! [mime 0.3]: https://docs.rs/mime/0.3 //! [DKIM]: https://datatracker.ietf.org/doc/html/rfc6376 -#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.7")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.8")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]