diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b01e7..3cbe7ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Changelog ========= +6.11.0 +------ + +- Fix parsing failure for some valid forensic reports (PR #170) +- Fix double count of messages in the Grafana dashboard (PR #182) +- Add begin and end date fields for aggregate DMARC reports in Elasticsearch (PR #183 fixes issue #162) +- Fix crash on IMAP timeout (PR #186 fixes issue #163) + + 6.10.0 ------ diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 701adc4..c299f3e 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -35,7 +35,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.10.0" +__version__ = "6.11.0" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:'