Commit
+6 -2 +/-2 browse
1 | diff --git a/CHANGELOG.md b/CHANGELOG.md |
2 | index c87aa76..dcdc705 100644 |
3 | --- a/CHANGELOG.md |
4 | +++ b/CHANGELOG.md |
5 | @@ -1,3 +1,7 @@ |
6 | + mail-auth 0.4.1 |
7 | + ================================ |
8 | + - Bump `zip` dependency to 2.1.1. |
9 | + |
10 | mail-auth 0.4.0 |
11 | ================================ |
12 | - DKIM verification defaults to `strict` mode and ignores signatures with a `l=` tag to avoid exploits (see https://stalw.art/blog/dkim-exploit). Use `AuthenticatedMessage::parse_with_opts(&message, false)` to enable `relaxed` mode. |
13 | diff --git a/Cargo.toml b/Cargo.toml |
14 | index 2ddd4af..78c2199 100644 |
15 | --- a/Cargo.toml |
16 | +++ b/Cargo.toml |
17 | @@ -1,7 +1,7 @@ |
18 | [package] |
19 | name = "mail-auth" |
20 | description = "DKIM, ARC, SPF and DMARC library for Rust" |
21 | - version = "0.4.0" |
22 | + version = "0.4.1" |
23 | edition = "2021" |
24 | authors = [ "Stalwart Labs <hello@stalw.art>"] |
25 | license = "Apache-2.0 OR MIT" |
26 | @@ -38,7 +38,7 @@ serde_json = "1.0" |
27 | sha1 = { version = "0.10", features = ["oid"], optional = true } |
28 | sha2 = { version = "0.10.6", features = ["oid"], optional = true } |
29 | hickory-resolver = { version = "0.24", features = ["dns-over-rustls", "dnssec-ring"] } |
30 | - zip = "1.3.0" |
31 | + zip = "2.1.1" |
32 | rand = { version = "0.8.5", optional = true } |
33 | |
34 | [dev-dependencies] |