diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bdae8f..9a26d9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ + +### v0.8.2 (2018-05-03) + + +#### Bug Fixes + +* **transport:** Write timeout is not set in smtp transport ([cc3580a8](https://github.com/lettre/lettre/commit/cc3580a8942e11c2addf6677f05e16fb451c7ea0)) + +#### Style + +* **all:** Fix typos ([360c42ff](https://github.com/lettre/lettre/commit/360c42ffb8f706222eaad14e72619df1e4857814)) + +#### Features + +* **all:** + * Add set -xe option to build scripts ([57bbabaa](https://github.com/lettre/lettre/commit/57bbabaa6a10cc1a4de6f379e25babfee7adf6ad)) + * Move post-success scripts to separate files ([3177b58c](https://github.com/lettre/lettre/commit/3177b58c6d11ffae73c958713f6f0084173924e1)) + * Add website upload to travis build script ([a5294df6](https://github.com/lettre/lettre/commit/a5294df63728e14e24eeb851bb4403abd6a7bd36)) + * Add codecov upload in travis ([a03bfa00](https://github.com/lettre/lettre/commit/a03bfa008537b1d86ff789d0823e89ad5d99bd79)) + * Update README to put useful links at the top ([1ebbe660](https://github.com/lettre/lettre/commit/1ebbe660f5e142712f702c02d5d1e45211763b42)) + * Update badges in README and Cargo.toml ([f7ee5c42](https://github.com/lettre/lettre/commit/f7ee5c427ad71e4295f2f1d8e3e9e2dd850223e8)) + * Move docs from hugo to gitbook ([27935e32](https://github.com/lettre/lettre/commit/27935e32ef097db8db004569f35cad1d6cd30eca)) +* **transport:** Use md-5 and hmac instead of rust-crypto ([0cf018a8](https://github.com/lettre/lettre/commit/0cf018a85e4ea1ad16c7216670da560cc915ec32)) + + + ### v0.8.1 (2018-04-11) diff --git a/lettre/Cargo.toml b/lettre/Cargo.toml index c8031b8..8b7c5a3 100644 --- a/lettre/Cargo.toml +++ b/lettre/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre" -version = "0.8.1" # remember to update html_root_url +version = "0.8.2" # 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 b721529..29f2b3a 100644 --- a/lettre/src/lib.rs +++ b/lettre/src/lib.rs @@ -4,7 +4,7 @@ //! emails have to implement `SendableEmail`. //! -#![doc(html_root_url = "https://docs.rs/lettre/0.8.1")] +#![doc(html_root_url = "https://docs.rs/lettre/0.8.2")] #![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts, trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces, unused_qualifications)] diff --git a/lettre_email/Cargo.toml b/lettre_email/Cargo.toml index 95da18b..c1fadd0 100644 --- a/lettre_email/Cargo.toml +++ b/lettre_email/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre_email" -version = "0.8.1" # remember to update html_root_url +version = "0.8.2" # remember to update html_root_url description = "Email builder" readme = "README.md" homepage = "http://lettre.at" diff --git a/lettre_email/src/lib.rs b/lettre_email/src/lib.rs index aa05913..2fe4afb 100644 --- a/lettre_email/src/lib.rs +++ b/lettre_email/src/lib.rs @@ -1,7 +1,7 @@ //! Lettre is a mailer written in Rust. lettre_email provides a simple email builder. //! -#![doc(html_root_url = "https://docs.rs/lettre_email/0.8.1")] +#![doc(html_root_url = "https://docs.rs/lettre_email/0.8.2")] #![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts, trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces, unused_qualifications)]