Skip to content

Commit a40b7c7

Browse files
committed
version bump for 7.0.3
1 parent 5c0cbc7 commit a40b7c7

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Changelog
55
7.1.0 (dev)
66
-----------
77

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+
814
7.0.2 (2019-05-29)
915
-----------
1016
* Add connection parameter for Elastic Cloud cloud_id.

elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# flake8: noqa
22
from __future__ import absolute_import
33

4-
VERSION = (7, 0, 2)
4+
VERSION = (7, 0, 3)
55
__version__ = VERSION
66
__versionstr__ = ".".join(map(str, VERSION))
77

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44
import sys
55

6-
VERSION = (7, 0, 2)
6+
VERSION = (7, 0, 3)
77
__version__ = VERSION
88
__versionstr__ = ".".join(map(str, VERSION))
99

0 commit comments

Comments
 (0)