From c1bf5dfda130586ffec701488e673cad97aafcb5 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 2 Jan 2024 18:45:34 +0100 Subject: [PATCH] Prepare 0.11.3 (#929) --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a310a2..80ce301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ + +### v0.11.3 (2024-01-02) + +#### Features + +* Derive `Clone` for `FileTransport` and `AsyncFileTransport` ([#924]) +* Derive `Debug` for `SmtpTransport` ([#925]) + +#### Misc + +* Upgrade `rustls` to v0.22 ([#921]) +* Drop once_cell dependency in favor of OnceLock from std ([#928]) + +[#921]: https://github.com/lettre/lettre/pull/921 +[#924]: https://github.com/lettre/lettre/pull/924 +[#925]: https://github.com/lettre/lettre/pull/925 +[#928]: https://github.com/lettre/lettre/pull/928 + ### v0.11.2 (2023-11-23) diff --git a/Cargo.toml b/Cargo.toml index 65d0a80..abcdb4c 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.2" +version = "0.11.3" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 200d2a7..280133e 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index 31988b2..605b933 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.2")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.3")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]