From 06386505508d1a3e18a93d826a44b14b8a768285 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Tue, 23 Apr 2019 12:51:35 -0400 Subject: [PATCH] 6.3.4 - Fix Elasticsearch index creation (closes issue #74) --- 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 42bbdeb..44c1d3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +6.3.4 +----- + +- Fix Elasticsearch index creation (closes issue #74) + 6.3.3 ----- diff --git a/parsedmarc/__init__.py b/parsedmarc/__init__.py index 895e1a8..5475b1f 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.3" +__version__ = "6.3.4" logging.basicConfig( format='%(levelname)8s:%(filename)s:%(lineno)d:' diff --git a/setup.py b/setup.py index 4179803..f571f5b 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.3" +__version__ = "6.3.4" description = "A Python package and CLI for parsing aggregate and " \ "forensic DMARC reports"