From b51756b8bd93d39fccb5b96ab73f9c6e2e2e3719 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 17 Feb 2025 12:41:57 -0500 Subject: [PATCH] 8.18.1 - Add missing `https://` to the default Microsoft Graph URL --- CHANGELOG.md | 5 +++++ parsedmarc/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ed71aa8..8cafe46e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +8.18.1 +------ + +- Add missing `https://` to the default Microsoft Graph URL + 8.18.0 ------ diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index c8f5ad90..8a44e1da 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -39,7 +39,7 @@ from parsedmarc.utils import parse_email from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime -__version__ = "8.18.0" +__version__ = "8.18.1" logger.debug("parsedmarc v{0}".format(__version__))