Skip to content

Commit

Permalink
Prepare 0.10.0-rc.4 (lettre#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobarbolini authored Oct 29, 2021
1 parent a89383c commit 94cc014
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
</div>

<div align="center">
<a href="https://deps.rs/crate/lettre/0.10.0-rc.3">
<img src="https://deps.rs/crate/lettre/0.10.0-rc.3/status.svg"
<a href="https://deps.rs/crate/lettre/0.10.0-rc.4">
<img src="https://deps.rs/crate/lettre/0.10.0-rc.4/status.svg"
alt="dependency status" />
</a>
</div>
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 94cc014

Please sign in to comment.