Skip to content

Commit

Permalink
v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Jun 2, 2023
1 parent e589e5d commit 0c93f7b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
mail-auth 0.3.2
================================
- Bump `mail-builder` dependency to 0.3
- Bump `quick-xml` dependency to 0.28

mail-auth 0.3.1
================================
- Fix: Avoid panicking on invalid RSA key input (#17)
- Fix: Avoid panicking on invalid RSA key input (#17)

mail-auth 0.3.0
================================
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "mail-auth"
description = "DKIM, ARC, SPF and DMARC library for Rust"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
authors = [ "Stalwart Labs <hello@stalw.art>"]
license = "Apache-2.0 OR MIT"
Expand All @@ -26,9 +26,9 @@ ed25519-dalek = { version = "1.0.1", optional = true }
flate2 = "1.0.25"
lru-cache = "0.1.2"
mail-parser = { version = "0.8", git = "https://github.com/stalwartlabs/mail-parser", features = ["ludicrous_mode", "full_encoding"] }
mail-builder = { version = "0.2.5", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
mail-builder = { version = "0.3", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
parking_lot = "0.12.0"
quick-xml = "0.27.1"
quick-xml = "0.28"
ring = { version = "0.16.20", optional = true }
rsa = { version = "0.7.0", optional = true }
rustls-pemfile = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/report/dmarc/generate.rs
Expand Up @@ -67,7 +67,7 @@ impl Report {
submitter,
self.report_id()
))
.binary_attachment(
.attachment(
"application/gzip",
format!(
"{}!{}!{}!{}.xml.gz",
Expand Down

0 comments on commit 0c93f7b

Please sign in to comment.