From 5d772c3b3694ad53e19b4fcf7af016fb613b355b Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 29 Dec 2025 14:23:50 -0500 Subject: [PATCH] Bump version to 9.0.7 and update changelog with IMAP `since` option fix --- CHANGELOG.md | 6 ++++++ parsedmarc/constants.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7639929..43e918e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 9.0.7 + +## Fixes + +- Fix IMAP `since` option (#PR 645 closes issues #581 and #643). + ## 9.0.6 ### Fixes diff --git a/parsedmarc/constants.py b/parsedmarc/constants.py index 5bc139d..e690f16 100644 --- a/parsedmarc/constants.py +++ b/parsedmarc/constants.py @@ -1,3 +1,3 @@ -__version__ = "9.0.6" +__version__ = "9.0.7" USER_AGENT = f"parsedmarc/{__version__}"