We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c0cbc7 commit a40b7c7Copy full SHA for a40b7c7
Changelog.rst
@@ -5,6 +5,12 @@ Changelog
5
7.1.0 (dev)
6
-----------
7
8
+7.0.3 (2019-08-21)
9
+-----------
10
+ * remove sleep in retries
11
+ * pass ``scroll_id`` through body in ``scroll``
12
+ * add ``user-agent``
13
+
14
7.0.2 (2019-05-29)
15
16
* Add connection parameter for Elastic Cloud cloud_id.
elasticsearch/__init__.py
@@ -1,7 +1,7 @@
1
# flake8: noqa
2
from __future__ import absolute_import
3
4
-VERSION = (7, 0, 2)
+VERSION = (7, 0, 3)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
setup.py
@@ -3,7 +3,7 @@
from setuptools import setup, find_packages
import sys
0 commit comments