diff --git a/CHANGELOG.md b/CHANGELOG.md index 0766efc..883b8ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ + +### v0.11.5 (2024-03-25) + +#### Features + +* Support SMTP SASL draft login challenge ([#911]) +* Add conversion from SMTP response code to integer ([#941]) + +#### Misc + +* Upgrade `rustls` to v0.23 ([#950]) +* Bump `base64` to v0.22 ([#945]) +* Fix typos in documentation ([#943], [#944]) +* Add `Cargo.lock` ([#942]) + +[#911]: https://github.com/lettre/lettre/pull/911 +[#941]: https://github.com/lettre/lettre/pull/941 +[#942]: https://github.com/lettre/lettre/pull/942 +[#943]: https://github.com/lettre/lettre/pull/943 +[#944]: https://github.com/lettre/lettre/pull/944 +[#945]: https://github.com/lettre/lettre/pull/945 +[#950]: https://github.com/lettre/lettre/pull/950 + ### v0.11.4 (2024-01-28) diff --git a/Cargo.lock b/Cargo.lock index 99791a1..ee3beba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1151,7 +1151,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lettre" -version = "0.11.4" +version = "0.11.5" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index d685a54..1062100 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.4" +version = "0.11.5" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 4e9336c..03ea17d 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index 77a295b..23443f0 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.4")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.11.5")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]