diff --git a/CHANGELOG.md b/CHANGELOG.md index b94a1359..4bc61889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.8.2 +----- + +- Require `mailsuite>=1.5.4` + 6.8.1 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index fc7b4c4f..59afac17 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -33,7 +33,7 @@ from parsedmarc.utils import is_outlook_msg, convert_outlook_msg from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime from parsedmarc.utils import parse_email -__version__ = "6.8.1" +__version__ = "6.8.2" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/requirements.txt b/requirements.txt index 7c9b0229..39d9fd89 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ elasticsearch>=6.3.1,<7.0.0 elasticsearch-dsl>=6.3.1,<7.0.0 kafka-python>=1.4.4 six==1.13.0 -mailsuite>=1.5.3 +mailsuite>=1.5.4 nose>=1.3.7 flake8>=3.7.8 doc8>=0.8.0 diff --git a/setup.py b/setup.py index edbb8ae0..a5e05b09 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup from codecs import open from os import path -__version__ = "6.8.1" +__version__ = "6.8.2" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports" @@ -100,7 +100,7 @@ setup( 'requests>=2.22.0', 'imapclient>=2.1.0', 'mail-parser>=3.11.0', 'dateparser>=0.7.2', - 'mailsuite>=1.5.3', + 'mailsuite>=1.5.4', 'elasticsearch>=6.3.1,<7.0.0', 'elasticsearch-dsl>=6.3.1,<7.0.0', 'kafka-python>=1.4.4',