diff --git a/HISTORY.rst b/HISTORY.rst index 921cf08..c680e49 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ Release Changelog ================= +1.0.2 (2016-04-12) +------------------ +- Added --raw_query(-r) argument for using the native Query DSL format. + 1.0.1 (2016-01-22) ------------------ - Fixed support elasticsearch-1.4.0. diff --git a/es2csv.py b/es2csv.py index dd8965c..789b522 100755 --- a/es2csv.py +++ b/es2csv.py @@ -24,7 +24,7 @@ CONNECTION_TIMEOUT = 120 TIMES_TO_TRY = 3 RETRY_DELAY = 60 -__version__ = '1.0.1' +__version__ = '1.0.2' # Retry decorator for functions with exceptions