diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ec549..dff3423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ + +### v0.11.9 (2024-09-13) + +#### Bug fixes + +* Fix feature gate for `accept_invalid_hostnames` for rustls ([#988]) +* Fix parsing `Mailbox` with trailing spaces ([#986]) + +#### Misc + +* Bump `rustls-native-certs` to v0.8 ([#992]) +* Make getting started example in readme complete ([#990]) + +[#988]: https://github.com/lettre/lettre/pull/988 +[#986]: https://github.com/lettre/lettre/pull/986 +[#990]: https://github.com/lettre/lettre/pull/990 +[#992]: https://github.com/lettre/lettre/pull/992 + ### v0.11.8 (2024-09-03) diff --git a/Cargo.lock b/Cargo.lock index a781044..167149d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1178,7 +1178,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "lettre" -version = "0.11.8" +version = "0.11.9" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 763a988..71d7d22 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.8" +version = "0.11.9" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 11e1d7a..224a3e3 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@