Skip to content

Commit 3c9b5d5

Browse files
1.0.3
1 parent 6760d72 commit 3c9b5d5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

HISTORY.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Release Changelog
44
=================
55

6+
1.0.3 (2016-06-12)
7+
------------------
8+
- Added option to read query string from file --query(-q) @'~/filename.json'. (Issue `#5 <https://github.com/taraslayshchuk/es2csv/issues/5>`_)
9+
- Added --meta_fields(-e) argument for selecting meta-fields: _id, _index, _score, _type. (Issue `#6 <https://github.com/taraslayshchuk/es2csv/issues/6>`_)
10+
- Updating version elasticsearch-py to 2.3.0.
11+
612
1.0.2 (2016-04-12)
713
------------------
814
- Added --raw_query(-r) argument for using the native Query DSL format.
@@ -15,7 +21,7 @@ Release Changelog
1521

1622
1.0.0.dev1 (2016-01-04)
1723
-----------------------
18-
- Fixed encoding in CSV to UTF-8. (Issue `#3 <https://github.com/taraslayshchuk/es2csv/pull/3>`_, Pull `#1 <https://github.com/taraslayshchuk/es2csv/pull/1>`_)
24+
- Fixed encoding in CSV to UTF-8. (Issue `#3 <https://github.com/taraslayshchuk/es2csv/issues/3>`_, Pull `#1 <https://github.com/taraslayshchuk/es2csv/pull/1>`_)
1925
- Added better progressbar unit names. (Pull `#2 <https://github.com/taraslayshchuk/es2csv/pull/2>`_)
2026
- Added pip installation instruction.
2127

es2csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
TIMES_TO_TRY = 3
2727
RETRY_DELAY = 60
2828
META_FIELDS = ['_id', '_index', '_score', '_type']
29-
__version__ = '1.0.2'
29+
__version__ = '1.0.3'
3030

3131

3232
# Retry decorator for functions with exceptions

0 commit comments

Comments
 (0)