Compare commits

...

3 Commits

Author SHA1 Message Date
Alexis Mousset
73d823c8ca Merge pull request #255 from amousset/prepare-0.8.1
Prepare 0.8.1
2018-04-11 23:36:46 +02:00
Alexis Mousset
d45ee40f4a fix(all): No cache on build folders 2018-04-11 23:28:03 +02:00
Alexis Mousset
e295c5db5e Prepare 0.8.1 release 2018-04-11 22:54:29 +02:00
6 changed files with 24 additions and 11 deletions

View File

@@ -12,13 +12,6 @@ matrix:
sudo: required
cache:
directories:
- target/debug/deps
- target/debug/build
- target/release/deps
- target/release/build
addons:
apt:
packages:

View File

@@ -1,3 +1,23 @@
<a name="v0.8.1"></a>
### v0.8.1 (2018-04-11)
#### Fix
* **all:**
* Replace skeptic by some custom rustdoc invocations ([81bad131](https://github.com/lettre/lettre/commit/81bad1317519d330c46ea02f2b7a266b97cc00dd))
#### Documentation
* **all:**
* Add changelog sections for style and docs ([b4d03ead](https://github.com/lettre/lettre/commit/b4d03ead8cce04e0c3d65a30e7a07acca9530f30))
* Use clog to generate changelogs ([8981a775](https://github.com/lettre/lettre/commit/8981a7758c89be69974ef204c4390744aea94e4f), closes [#233](https://github.com/lettre/lettre/issues/233))
#### Style
* **transport-smtp:** Avoid useless empty format strings ([f3271715](https://github.com/lettre/lettre/commit/f3271715ecaf2793c9064462184867e4f22b0ead))
<a name="v0.8.0"></a>
### v0.8.0 (2018-03-31)

View File

@@ -1,7 +1,7 @@
[package]
name = "lettre"
version = "0.8.0" # remember to update html_root_url
version = "0.8.1" # remember to update html_root_url
description = "Email client"
readme = "README.md"
documentation = "https://docs.rs/lettre/"

View File

@@ -4,7 +4,7 @@
//! emails have to implement `SendableEmail`.
//!
#![doc(html_root_url = "https://docs.rs/lettre/0.8.0")]
#![doc(html_root_url = "https://docs.rs/lettre/0.8.1")]
#![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts,
trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces,
unused_qualifications)]

View File

@@ -1,7 +1,7 @@
[package]
name = "lettre_email"
version = "0.8.0" # remember to update html_root_url
version = "0.8.1" # remember to update html_root_url
description = "Email builder"
readme = "README.md"
documentation = "https://docs.rs/lettre_email/"

View File

@@ -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.0")]
#![doc(html_root_url = "https://docs.rs/lettre_email/0.8.1")]
#![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts,
trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces,
unused_qualifications)]