Prepare 0.10.2 (#853)
This commit is contained in:
36
CHANGELOG.md
36
CHANGELOG.md
@@ -1,3 +1,39 @@
|
|||||||
|
<a name="v0.10.2"></a>
|
||||||
|
### v0.10.2 (2023-01-29)
|
||||||
|
|
||||||
|
#### Upgrade notes
|
||||||
|
|
||||||
|
* MSRV is now 1.60 ([#828])
|
||||||
|
|
||||||
|
#### Features
|
||||||
|
|
||||||
|
* Allow providing a custom `tokio` stream for `AsyncSmtpTransport` ([#805])
|
||||||
|
* Return whole SMTP error message ([#821])
|
||||||
|
|
||||||
|
#### Bug fixes
|
||||||
|
|
||||||
|
* Mailbox displays wrongly when containing a comma and a non-ascii char in its name ([#827])
|
||||||
|
* Require `quoted_printable` ^0.4.6 in order to fix encoding of tabs and spaces at the end of line ([#837])
|
||||||
|
|
||||||
|
#### Misc
|
||||||
|
|
||||||
|
* Increase tracing ([#848])
|
||||||
|
* Bump `idna` to 0.3 ([#816])
|
||||||
|
* Update `base64` to 0.21 ([#840] and [#851])
|
||||||
|
* Update `rsa` to 0.8 ([#829] and [#852])
|
||||||
|
|
||||||
|
[#805]: https://github.com/lettre/lettre/pull/805
|
||||||
|
[#816]: https://github.com/lettre/lettre/pull/816
|
||||||
|
[#821]: https://github.com/lettre/lettre/pull/821
|
||||||
|
[#827]: https://github.com/lettre/lettre/pull/827
|
||||||
|
[#828]: https://github.com/lettre/lettre/pull/828
|
||||||
|
[#829]: https://github.com/lettre/lettre/pull/829
|
||||||
|
[#837]: https://github.com/lettre/lettre/pull/837
|
||||||
|
[#840]: https://github.com/lettre/lettre/pull/840
|
||||||
|
[#848]: https://github.com/lettre/lettre/pull/848
|
||||||
|
[#851]: https://github.com/lettre/lettre/pull/851
|
||||||
|
[#852]: https://github.com/lettre/lettre/pull/852
|
||||||
|
|
||||||
<a name="v0.10.1"></a>
|
<a name="v0.10.1"></a>
|
||||||
### v0.10.1 (2022-07-20)
|
### v0.10.1 (2022-07-20)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lettre"
|
name = "lettre"
|
||||||
# remember to update html_root_url and README.md (Cargo.toml example and deps.rs badge)
|
# remember to update html_root_url and README.md (Cargo.toml example and deps.rs badge)
|
||||||
version = "0.10.1"
|
version = "0.10.2"
|
||||||
description = "Email client"
|
description = "Email client"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
homepage = "https://lettre.rs"
|
homepage = "https://lettre.rs"
|
||||||
|
|||||||
@@ -28,8 +28,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<a href="https://deps.rs/crate/lettre/0.10.1">
|
<a href="https://deps.rs/crate/lettre/0.10.2">
|
||||||
<img src="https://deps.rs/crate/lettre/0.10.1/status.svg"
|
<img src="https://deps.rs/crate/lettre/0.10.2/status.svg"
|
||||||
alt="dependency status" />
|
alt="dependency status" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -109,7 +109,7 @@
|
|||||||
//! [mime 0.3]: https://docs.rs/mime/0.3
|
//! [mime 0.3]: https://docs.rs/mime/0.3
|
||||||
//! [DKIM]: https://datatracker.ietf.org/doc/html/rfc6376
|
//! [DKIM]: https://datatracker.ietf.org/doc/html/rfc6376
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/crate/lettre/0.10.1")]
|
#![doc(html_root_url = "https://docs.rs/crate/lettre/0.10.2")]
|
||||||
#![doc(html_favicon_url = "https://lettre.rs/favicon.ico")]
|
#![doc(html_favicon_url = "https://lettre.rs/favicon.ico")]
|
||||||
#![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")]
|
#![doc(html_logo_url = "https://avatars0.githubusercontent.com/u/15113230?v=4")]
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
|
|||||||
Reference in New Issue
Block a user