We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a4d5c commit c93e065Copy full SHA for c93e065
HISTORY.rst
@@ -3,6 +3,17 @@
3
History
4
-------
5
6
+7.1.0 (2019-10-29)
7
+~~~~~~~~~~~~~~~~~~
8
+* Support for Django `DecimalField` #141
9
+* Indexing speedup by using `parallel` indexing. #213.
10
+ Now you can pass `--parallel` or set `ELASTICSEARCH_DSL_PARALLEL`
11
+ in your settings to get indexing speed boost while indexing
12
+ through management command.
13
+* Fixing name resolution in management command #206
14
+* Small documentation fixes. #196
15
+
16
17
7.0.0 (2019-08-11)
18
~~~~~~~~~~~~~~~~~~
19
* Support Elasticsearch 7.0 (See PR #176)
setup.py
@@ -8,7 +8,7 @@
except ImportError:
from distutils.core import setup
-version = '7.0.0'
+version = '7.1.0'
if sys.argv[-1] == 'publish':
try:
0 commit comments