From 51794aa9121ced5e34fb34f986d5ff0bd731071a Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Wed, 23 Oct 2024 23:04:45 +0200 Subject: [PATCH] Prepare v0.11.10 (#1002) --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dff3423..19490d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ + +### v0.11.10 (2024-10-23) + +#### Bug fixes + +* Ignore disconnect errors when `pool` feature of SMTP transport is disabled ([#999]) +* Use case insensitive comparisons for matching login challenge requests ([#1000]) + +[#999]: https://github.com/lettre/lettre/pull/999 +[#1000]: https://github.com/lettre/lettre/pull/1000 + ### v0.11.9 (2024-09-13) diff --git a/Cargo.lock b/Cargo.lock index 167149d..4848bd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1178,7 +1178,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lettre" -version = "0.11.9" +version = "0.11.10" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 71d7d22..d2a7b53 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.9" +version = "0.11.10" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 224a3e3..d38d349 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index 34fb2f6..93b859d 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.9")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.10")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]