From a29ea990a709af21446e935c4bfbfa2e0b2bf92d Mon Sep 17 00:00:00 2001 From: Nick Lang Date: Tue, 28 May 2019 11:33:06 -0600 Subject: [PATCH] Bump version to 7.0.2 --- Changelog.rst | 5 ++++- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index e2d2125c..dad5c257 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,11 +3,14 @@ Changelog ========= 7.1.0 (dev) +----------- + +7.0.2 (2019-05-29) ----------- * Add connection parameter for Elastic Cloud cloud_id. * ML client uses client object for _bulk_body requests -7.0.1 (2019-05019) +7.0.1 (2019-05-19) ----------- * Use black to format the code. * Update the test matrix to only use current pythons and 7.x ES diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index cf024205..0ec155f1 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,7 +1,7 @@ # flake8: noqa from __future__ import absolute_import -VERSION = (7, 0, 1) +VERSION = (7, 0, 2) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) diff --git a/setup.py b/setup.py index d8c38273..b9bbeb4d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from os.path import join, dirname from setuptools import setup, find_packages import sys -VERSION = (7, 0, 1) +VERSION = (7, 0, 2) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))