From 94cc0149d13e894a454a69645d803cef468503f3 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Fri, 29 Oct 2021 09:22:53 +0200 Subject: [PATCH] Prepare 0.10.0-rc.4 (#691) --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95c4ee7..75842de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Several breaking changes were made between 0.9 and 0.10, but changes should be straightforward: -* MSRV is now 1.49 +* MSRV is now 1.52.1 * The `lettre_email` crate has been merged into `lettre`. To migrate, replace `lettre_email` with `lettre::message` and make sure to enable the `builder` feature (it's enabled by default). * `SendableEmail` has been renamed to `Email` and `EmailBuilder::build()` produces it directly. To migrate, diff --git a/Cargo.toml b/Cargo.toml index 976bdd1..284966f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lettre" # remember to update html_root_url and README.md (Cargo.toml example and deps.rs badge) -version = "0.10.0-rc.3" +version = "0.10.0-rc.4" description = "Email client" readme = "README.md" homepage = "https://lettre.rs" diff --git a/README.md b/README.md index a4c3623..87fdd12 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@
- - + dependency status
@@ -71,7 +71,7 @@ To use this library, add the following to your `Cargo.toml`: ```toml [dependencies] -lettre = "0.10.0-rc.3" +lettre = "0.10.0-rc.4" ``` ```rust,no_run diff --git a/src/lib.rs b/src/lib.rs index a83a042..2973d57 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,7 +98,7 @@ //! [async-std 1.x]: https://docs.rs/async-std/1 //! [mime 0.3]: https://docs.rs/mime/0.3 -#![doc(html_root_url = "https://docs.rs/crate/lettre/0.10.0-rc.3")] +#![doc(html_root_url = "https://docs.rs/crate/lettre/0.10.0-rc.4")] #![doc(html_favicon_url = "https://lettre.rs/favicon.ico")] #![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")] #![forbid(unsafe_code)]