diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c73537..0b59ab5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ + +### v0.10.1 (2022-07-20) + +#### Features + +* Add `boring-tls` support for `SmtpTransport` and `AsyncSmtpTransport`. The latter is only supported with the tokio runtime. ([#797]) ([#798]) +* Make the minimum TLS version configurable. ([#799]) ([#800]) + +#### Bug Fixes + +* Ensure connections are closed on abort. ([#801]) +* Fix SMTP dot stuffing. ([#803]) + +[#797]: https://github.com/lettre/lettre/pull/797 +[#798]: https://github.com/lettre/lettre/pull/798 +[#799]: https://github.com/lettre/lettre/pull/799 +[#800]: https://github.com/lettre/lettre/pull/800 +[#801]: https://github.com/lettre/lettre/pull/801 +[#803]: https://github.com/lettre/lettre/pull/803 + -### v0.10.0 (unreleased) +### v0.10.0 (2022-06-29) #### Upgrade notes diff --git a/Cargo.toml b/Cargo.toml index 3711846..c812422 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.10.0" +version = "0.10.1" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index b2eacd4..81e5eb3 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
diff --git a/src/lib.rs b/src/lib.rs index e95661d..5a13d6c 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.10.0")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.10.1")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]