diff --git a/HISTORY.rst b/HISTORY.rst index 310f28a..74e5b44 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ Release Changelog ================= +5.2.0 (2017-02-16) +------------------ +- Updating version elasticsearch-py to 5.2.* and added support of Elasticsearch 5. (Issue `#19 `_) + 2.4.3 (2017-02-15) ------------------ - Update doc according to wildcard support in fields naming. diff --git a/es2csv.py b/es2csv.py index e362c85..f55dc84 100755 --- a/es2csv.py +++ b/es2csv.py @@ -26,7 +26,7 @@ TIMES_TO_TRY = 3 RETRY_DELAY = 60 META_FIELDS = ['_id', '_index', '_score', '_type'] -__version__ = '2.4.3' +__version__ = '5.2.0' # Retry decorator for functions with exceptions