Skip to content

Commit a29ea99

Browse files
committed
Bump version to 7.0.2
1 parent a5d27e3 commit a29ea99

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Changelog.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
Changelog
44
=========
55
7.1.0 (dev)
6+
-----------
7+
8+
7.0.2 (2019-05-29)
69
-----------
710
* Add connection parameter for Elastic Cloud cloud_id.
811
* ML client uses client object for _bulk_body requests
912

10-
7.0.1 (2019-05019)
13+
7.0.1 (2019-05-19)
1114
-----------
1215
* Use black to format the code.
1316
* Update the test matrix to only use current pythons and 7.x ES

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
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, 1)
4+
VERSION = (7, 0, 2)
55
__version__ = VERSION
66
__versionstr__ = ".".join(map(str, VERSION))
77

setup.py

Lines changed: 1 addition & 1 deletion
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, 1)
6+
VERSION = (7, 0, 2)
77
__version__ = VERSION
88
__versionstr__ = ".".join(map(str, VERSION))
99

0 commit comments

Comments
 (0)