From bf102f78aa59cbb2264f590dfc8a80a01b685ed3 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Wed, 3 May 2023 17:10:49 -0400 Subject: [PATCH] 8.5.0 - Add support for Azure Log Analytics (PR #394) - Fix a bug in the Microsoft Graph integration that caused a crash when an inbox has 10+ folders (PR #398) - Documentation fixes --- CHANGELOG.md | 7 +++++++ parsedmarc/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0324994..816e690 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +8.5.0 +----- + +- Add support for Azure Log Analytics (PR #394) +- Fix a bug in the Microsoft Graph integration that caused a crash when an inbox has 10+ folders (PR #398) +- Documentation fixes + 8.4.2 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index ca9e485..b161207 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -34,7 +34,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg from parsedmarc.utils import parse_email from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime -__version__ = "8.4.2" +__version__ = "8.5.0" logger.debug("parsedmarc v{0}".format(__version__))