From 1387fb489939e7aeafe2340a40843f853e6bb255 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Fri, 20 Feb 2026 14:27:46 -0500 Subject: [PATCH] 9.0.11 - Remove microseconds from DMARC aggregate report time ranges before parsing them. --- CHANGELOG.md | 6 ++++++ parsedmarc/constants.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b2bf5..4494c18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 9.0.11 + +## Fixes + +- Remove microseconds from DMARC aggregate report time ranges before parsing them. + ## 9.0.10 - Support Python 3.14+ diff --git a/parsedmarc/constants.py b/parsedmarc/constants.py index 3afe5c2..6eb8e2e 100644 --- a/parsedmarc/constants.py +++ b/parsedmarc/constants.py @@ -1,3 +1,3 @@ -__version__ = "9.0.10" +__version__ = "9.0.11" USER_AGENT = f"parsedmarc/{__version__}"