From 3f64e30f6f789bf4b5ed960fa9e1e4a69a46cfa5 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Sat, 23 May 2026 22:08:34 -0400 Subject: [PATCH] Update version to 10.0.1 and bump mailsuite requirement to >=2.2.0 --- CHANGELOG.md | 6 ++++++ parsedmarc/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e0ccb..81fb071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 10.0.1 + +### Changes + +- Bump `mailsuite` requirement to `>-2.2.0` to fix an upstream `Reply-To` header parsing bug for failure samples + ## 10.0.0 ### Enhancements diff --git a/parsedmarc/constants.py b/parsedmarc/constants.py index c053484..dda7dba 100644 --- a/parsedmarc/constants.py +++ b/parsedmarc/constants.py @@ -1,4 +1,4 @@ -__version__ = "10.0.0" +__version__ = "10.0.1" USER_AGENT = f"parsedmarc/{__version__}" diff --git a/pyproject.toml b/pyproject.toml index cb6f9a1..7e028f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ "expiringdict>=1.1.4", "kafka-python-ng>=2.2.2", "lxml>=4.4.0", - "mailsuite[gmail,msgraph]>=2.1.0", + "mailsuite[gmail,msgraph]>=2.2.0", "maxminddb>=2.0.0", "opensearch-py>=2.4.2,<=4.0.0", "publicsuffixlist>=0.10.0",