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 @@