From d930c42d5069e344a9dfa84ebe4b60bf3b11ac64 Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Wed, 11 Nov 2020 17:38:03 +0100 Subject: [PATCH] Prepare 0.9.5 release --- CHANGELOG.md | 9 +++++++-- lettre/Cargo.toml | 2 +- lettre/src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 619b898..abb5603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ - -### v0.9.4 (2020-11-11) + +### v0.9.5 (2020-11-11) #### Bug Fixes * **transport** * **SECURITY**: Prevent argument injection in sendmail transport + +### v0.9.4 (2020-04-21) + +#### Bug Fixes + * **email** * Go back to `rust-email` 0.0.20 as upgrade broke message formatting ([6a40f4a](https://github.com/lettre/lettre/commit/6a40f4a) diff --git a/lettre/Cargo.toml b/lettre/Cargo.toml index 3f8ba08..7563ef8 100644 --- a/lettre/Cargo.toml +++ b/lettre/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre" -version = "0.9.4" # remember to update html_root_url +version = "0.9.5" # remember to update html_root_url description = "Email client" readme = "README.md" homepage = "http://lettre.at" diff --git a/lettre/src/lib.rs b/lettre/src/lib.rs index 24f1366..1bfda4d 100644 --- a/lettre/src/lib.rs +++ b/lettre/src/lib.rs @@ -3,7 +3,7 @@ //! This mailer contains the available transports for your emails. //! -#![doc(html_root_url = "https://docs.rs/lettre/0.9.4")] +#![doc(html_root_url = "https://docs.rs/lettre/0.9.5")] #![deny( missing_copy_implementations, trivial_casts,