From 20ff722f30bd5b5e8949f8c7a2d544e770793e9e Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Tue, 30 Apr 2019 10:09:53 -0400 Subject: [PATCH] 6.3.6 --- CHANGELOG.md | 6 ++++++ parsedmarc/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7603d5..88ca6cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +6.3.6 +----- + +- Work around some unexpected IMAP responses reported in issue #70 and issue #75 +- Show correct destination folder in debug logs when moving aggregate reports + 6.3.5 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 7a6cb07..f8039ee 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -38,7 +38,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.3.5" +__version__ = "6.3.6" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/setup.py b/setup.py index 55fde32..f3af5dd 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.3.5" +__version__ = "6.3.6" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports"