From eda5726652c17529fce367fe8821394bc2d052f2 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Mon, 20 Jun 2022 10:32:50 -0400 Subject: [PATCH] 8.3.0 release - Support MFA for Microsoft Graph (PR #320 closes issue #319) - Add more options for S3 export (PR #328) - Provide a helpful error message when the log file cannot be created (closes issue #317) --- CHANGELOG.md | 7 +++++++ parsedmarc/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 686dd14..42a46b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +8.3.0 +----- + +- Support MFA for Microsoft Graph (PR #320 closes issue #319) +- Add more options for S3 export (PR #328) +- Provide a helpful error message when the log file cannot be created (closes issue #317) + 8.2.0 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 30f7e3d..cc86377 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.2.0" +__version__ = "8.3.0" formatter = logging.Formatter( fmt='%(levelname)8s:%(filename)s:%(lineno)d:%(message)s', diff --git a/setup.py b/setup.py index 328a08c..81be1d4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup from codecs import open from os import path -__version__ = "8.2.0" +__version__ = "8.3.0" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports"