From 2aa4b6aac43d7f034937835a410979e2dd8c61bc Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Wed, 6 Feb 2019 06:43:55 -0500 Subject: [PATCH] 6.0.1 - Fix Elasticsearch output PR #50 - andrewmcgilvray --- CHANGELOG.md | 5 +++++ parsedmarc/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b84587..b9987b2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.0.1 +----- + +- Fix Elasticsearch output (PR #50 - andrewmcgilvray) + 6.0.0 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 369f158d..fe88b6a4 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.0.0" +__version__ = "6.0.1" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/setup.py b/setup.py index d34c5442..c4a07d2d 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.0.0" +__version__ = "6.0.1" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports"