diff --git a/HISTORY.rst b/HISTORY.rst index 41b6b89..d422315 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ Release Changelog ================= +2.4.1 (2016-11-10) +------------------ +- Added --auth(-a) argument for Elasticsearch basic authentication. (Pull `#17 `_) +- Added --doc_types(-D) argument for specifying document type. (Pull `#13 `_) + 2.4.0 (2016-10-26) ------------------ - Added JSON validation for raw query. (Issue `#7 `_) diff --git a/es2csv.py b/es2csv.py index d97488d..60bd90a 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.0' +__version__ = '2.4.1' # Retry decorator for functions with exceptions