From eac29768ae27a41c0f30e8922b5db5c9ec5dfcc9 Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Wed, 19 Oct 2016 22:13:21 +0200 Subject: [PATCH 1/2] docs(all): Add complete documentation information to README --- Cargo.toml | 3 +-- README.md | 28 ++++++++++++++++++++++++---- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 24fc396..19e41ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,8 @@ name = "lettre" version = "0.6.0" description = "Email client" readme = "README.md" -documentation = "http://lettre.github.io/lettre/" +documentation = "https://lettre.github.io/lettre/" repository = "https://github.com/lettre/lettre" -homepage = "http://lettre.github.io/" license = "MIT" authors = ["Alexis Mousset "] keywords = ["email", "smtp", "mailer"] diff --git a/README.md b/README.md index b57e3e4..eb383ea 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,33 @@ # lettre [![Build Status](https://travis-ci.org/lettre/lettre.svg?branch=master)](https://travis-ci.org/lettre/lettre) [![Build status](https://ci.appveyor.com/api/projects/status/mpwglemugjtkps2d/branch/master?svg=true)](https://ci.appveyor.com/project/amousset/lettre/branch/master) -[![Coverage Status](https://coveralls.io/repos/lettre/lettre/badge.svg?branch=master&service=github)](https://coveralls.io/github/lettre/lettre?branch=master) +[![Coverage Status](https://coveralls.io/repos/github/lettre/lettre/badge.svg?branch=master)](https://coveralls.io/github/lettre/lettre?branch=master) [![Crate](https://img.shields.io/crates/v/lettre.svg)](https://crates.io/crates/lettre) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) [![Gitter](https://badges.gitter.im/lettre/lettre.svg)](https://gitter.im/lettre/lettre?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) This is an email library written in Rust. -See the [documentation](http://lettre.github.io/lettre) for more information. + +## Features + +Lettre provides the following features: + +* Multiple transport methods +* Unicode support (for email content and addresses) +* Secure delivery with SMTP using encryption and authentication +* Easy email builders + +## Documentation + +Released versions: + +* [latest](https://lettre.github.io/lettre/) +* [v0.6.0](https://lettre.github.io/lettre/v0.6.0/lettre/) +* [v0.5.1](https://lettre.github.io/lettre/v0.5.1/lettre/) + +Development version: + +* [master](https://lettre.github.io/lettre/master/lettre/) ## Install @@ -20,10 +40,10 @@ lettre = "0.6" ## Testing -The tests require a mail server listening locally on port 25. +The tests require an open mail server listening locally on port 25. ## License This program is distributed under the terms of the MIT license. -See LICENSE for details. +See [LICENSE](./LICENSE) for details. From 53f9bada4c9c50f4b3bd2f0fe5c917ce1de2b6ac Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Wed, 19 Oct 2016 23:12:11 +0200 Subject: [PATCH 2/2] chore(all): Bump to v0.6.1 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- README.md | 1 + 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e513a03..e8468e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### v0.6.1 (2016-10-19) + +#### Features + +* **documentation** + * #91: Build seperate docs for each release + * #96: Add complete documentation information to README + +#### Bugfixes + +* **email** + * #85: Use address-list for "To", "From" etc. + +* **tests** + * #93: Force building tests before coverage computing + ### v0.6.0 (2016-05-05) #### Features diff --git a/Cargo.toml b/Cargo.toml index 19e41ab..db30e37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre" -version = "0.6.0" +version = "0.6.1" description = "Email client" readme = "README.md" documentation = "https://lettre.github.io/lettre/" diff --git a/README.md b/README.md index eb383ea..aabf5d0 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Lettre provides the following features: Released versions: * [latest](https://lettre.github.io/lettre/) +* [v0.6.1](https://lettre.github.io/lettre/v0.6.1/lettre/) * [v0.6.0](https://lettre.github.io/lettre/v0.6.0/lettre/) * [v0.5.1](https://lettre.github.io/lettre/v0.5.1/lettre/)