From 64f8eef27b36993eace07ff285ba8fb35fa7c4e7 Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Sun, 24 Apr 2022 20:12:01 -0400 Subject: [PATCH] 8.0.1 Fix `ModuleNotFoundError` by adding `parsedmarc.mail` to the list of packages in `setup.py` (PR #308) --- CHANGELOG.md | 5 +++++ docs/index.rst | 2 +- parsedmarc/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d78b55..8139fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +8.0.1 +----- + +- Fix `ModuleNotFoundError` by adding `parsedmarc.mail` to the list of packages in `setup.py` (PR #308) + 8.0.0 ----- diff --git a/docs/index.rst b/docs/index.rst index e37b802..f6e1492 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -35,7 +35,7 @@ Features * Parses draft and 1.0 standard aggregate/rua reports * Parses forensic/failure/ruf reports -* Can parse reports from an inbox over IMAP +* Can parse reports from an inbox over IMAP, Microsoft Graph, or Gmail API * Transparently handles gzip or zip compressed reports * Consistent data structures * Simple JSON and/or CSV output diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index a5fbf1a..8c5c460 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.0.0" +__version__ = "8.0.1" formatter = logging.Formatter( fmt='%(levelname)8s:%(filename)s:%(lineno)d:%(message)s',