diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd6277..6ee14fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + +### v0.11.13 (2025-02-17) + +#### Features + +* Add WASM support ([#1037], [#1042]) +* Add method to get the TLS verify result with BoringSSL ([#1039]) + +#### Bug fixes + +* Synchronous pool shutdowns being arbitrarily delayed ([#1041]) + +[#1037]: https://github.com/lettre/lettre/pull/1037 +[#1039]: https://github.com/lettre/lettre/pull/1039 +[#1041]: https://github.com/lettre/lettre/pull/1041 +[#1042]: https://github.com/lettre/lettre/pull/1042 + ### v0.11.12 (2025-02-02) diff --git a/Cargo.lock b/Cargo.lock index 8463f2d..4eb92cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1189,7 +1189,7 @@ dependencies = [ [[package]] name = "lettre" -version = "0.11.12" +version = "0.11.13" dependencies = [ "async-std", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 0eb3ab4..41228be 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.12" +version = "0.11.13" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index 4a5409f..502b1d3 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@