From a40b7c73d7b235a5994a701e42e748d09930ba69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Wed, 21 Aug 2019 17:53:23 +0200 Subject: [PATCH] version bump for 7.0.3 --- Changelog.rst | 6 ++++++ elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index dad5c257..6bf301c4 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -5,6 +5,12 @@ Changelog 7.1.0 (dev) ----------- +7.0.3 (2019-08-21) +----------- + * remove sleep in retries + * pass ``scroll_id`` through body in ``scroll`` + * add ``user-agent`` + 7.0.2 (2019-05-29) ----------- * Add connection parameter for Elastic Cloud cloud_id. diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 0ec155f1..6cb99360 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,7 +1,7 @@ # flake8: noqa from __future__ import absolute_import -VERSION = (7, 0, 2) +VERSION = (7, 0, 3) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) diff --git a/setup.py b/setup.py index b9bbeb4d..06282c91 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, 2) +VERSION = (7, 0, 3) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))