From cf6b767a9c79e61f4941d313a59cd972230a8ba2 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Thu, 5 Jun 2025 21:41:17 +0200 Subject: [PATCH] Prepare v0.11.17 (#1093) --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eec02a5..726de2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ + +### v0.11.17 (2025-06-06) + +#### Features + +* Add support for `rustls-platform-verifier` ([#1081]) + +#### Misc + +* Change readme example to use `Mailbox::new` instead of string parsing ([#1090]) +* Replace futures-util `Mutex` with std `Mutex` in `AsyncStubTransport` ([#1091]) +* Avoid duplicate `abort_concurrent` implementation ([#1092]) + +[#1081]: https://github.com/lettre/lettre/pull/1081 +[#1090]: https://github.com/lettre/lettre/pull/1090 +[#1091]: https://github.com/lettre/lettre/pull/1091 +[#1092]: https://github.com/lettre/lettre/pull/1092 + ### v0.11.16 (2025-05-12) diff --git a/Cargo.lock b/Cargo.lock index 4c73145..a1efe92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1325,7 +1325,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lettre" -version = "0.11.16" +version = "0.11.17" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 815ab50..d75b870 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.16" +version = "0.11.17" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 487300f..fae47f2 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index f0a1bf9..9576ef1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -162,7 +162,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.16")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.17")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]