diff --git a/filtermail/CHANGELOG.md b/filtermail/CHANGELOG.md index 4f2dad5d..b4d132d3 100644 --- a/filtermail/CHANGELOG.md +++ b/filtermail/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.5.1 - 2026-02-24 + +### Bug Fixes + +- *(dkim)* Accept TXT records with no `v=` tag (#62) +- *(smtp)* Properly handle bounce messages (#63) +- *(dkim)* Accept TXT records with escaped quotes (#61) +- *(logs)* Log `From` address instead of envelope `MAIL FROM`. (#66) ## 0.5.0 - 2026-02-20 ### Bug Fixes diff --git a/filtermail/Cargo.lock b/filtermail/Cargo.lock index 25ac681e..b6b2cbb6 100644 --- a/filtermail/Cargo.lock +++ b/filtermail/Cargo.lock @@ -382,7 +382,7 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filtermail" -version = "0.5.0" +version = "0.5.1" dependencies = [ "async-trait", "base64", diff --git a/filtermail/Cargo.toml b/filtermail/Cargo.toml index cffa28d1..3b5ffb06 100644 --- a/filtermail/Cargo.toml +++ b/filtermail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filtermail" -version = "0.5.0" +version = "0.5.1" edition = "2024" license = "MIT" readme = "README.md"