diff --git a/CHANGELOG.md b/CHANGELOG.md index f1c26792..c1f26424 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ Changelog ========= +8.7.0 +----- + +- Add support for SMTP TLS reports (PR #453 closes issue #71) + 8.6.4 ----- +----- - Properly process aggregate reports that incorrectly call `identifiers` `identities` - Ignore SPF results in aggregate report records if the domain is not provided diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 9c5dff0b..95456737 100644 --- a/parsedmarc/__init__.py +++ b/parsedmarc/__init__.py @@ -34,7 +34,7 @@ from parsedmarc.utils import parse_email from parsedmarc.utils import timestamp_to_human, human_timestamp_to_datetime -__version__ = "8.6.4" +__version__ = "8.7.0" logger.debug("parsedmarc v{0}".format(__version__))