Skip to content

Commit

Permalink
change master version to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
amousset committed Dec 18, 2019
1 parent b20e7a0 commit dca8042
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 65 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lettre"
version = "0.9.2" # remember to update html_root_url
version = "0.10.0-pre" # remember to update html_root_url
description = "Email client"
readme = "README.md"
homepage = "https://lettre.at"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! This mailer contains the available transports for your emails.
//!

#![doc(html_root_url = "https://docs.rs/lettre/0.9.2")]
#![doc(html_root_url = "https://docs.rs/lettre/0.10.0")]
#![deny(
missing_copy_implementations,
trivial_casts,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use lettre::{EmailAddress, Envelope};
use lettre_email::EmailBuilder;
use lettre::builder::EmailBuilder;

#[test]
fn build_with_envelope_test() {
Expand Down
56 changes: 0 additions & 56 deletions tests/builder/skeptic.rs

This file was deleted.

6 changes: 1 addition & 5 deletions website/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@ Lettre is an email library that allows creating and sending messages. It provide
* Unicode support (for emails and transports, including for sender et recipient addresses when compatible)
* Secure defaults (emails are only sent encrypted by default)

The `lettre_email` crate allows you to compose messages, and the `lettre`
provide transports to send them.

Lettre requires Rust 1.36 or newer. Add the following to your `Cargo.toml`:

```toml
[dependencies]
lettre = "0.9"
lettre_email = "0.9"
lettre = "0.10"
```
2 changes: 1 addition & 1 deletion website/src/sending-messages/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This section explains how to manipulate emails you have created.

This mailer contains several different transports for your emails. To be sendable, the
emails have to implement `SendableEmail`, which is the case for emails created with `lettre_email`.
emails have to implement `SendableEmail`, which is the case for emails created with `lettre::builder`.

The following transports are available:

Expand Down

0 comments on commit dca8042

Please sign in to comment.