From c4f0454285cebefaa905ce62482a36485dc92d89 Mon Sep 17 00:00:00 2001 From: Nick Lang Date: Fri, 10 May 2019 16:51:51 -0600 Subject: [PATCH] Bump to version 7.0.1 --- Changelog.rst | 11 ++++++++++- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index f166e2d4..88a90334 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -2,8 +2,17 @@ Changelog ========= +7.1.0 (dev) +----------- -7.0.0 (dev) +7.0.1 (2019-05019) +----------- + * Use black to format the code. + * Update the test matrix to only use current pythons and 7.x ES + * Blocking pool must fit thread_count + * Update client to support missing ES 7 API's and query params. + +7.0.0 (2019-04-11) ----------- * Removed deprecated option ``update_all_types``. * Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index de5da014..cf024205 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,7 +1,7 @@ # flake8: noqa from __future__ import absolute_import -VERSION = (7, 0, 0) +VERSION = (7, 0, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 64b9f49f..d8c38273 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, 0) +VERSION = (7, 0, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))