diff --git a/Changelog.rst b/Changelog.rst index 15068ec1..e16afe04 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,14 @@ Changelog ========= -7.5.0 (2020-01-09) +7.5.1 (2020-01-19) ------------------ + * ``7.5.0`` tag was not released so retagging + +7.5.0 +----- + * All API is now auto generated + * deprecated the ``.xpack`` namespace * Update client to support ES 7.5 APIs 7.1.0 (2019-11-14) diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 0e719ef2..61c7ee0f 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,7 +1,7 @@ # flake8: noqa from __future__ import absolute_import -VERSION = (7, 5, 0) +VERSION = (7, 5, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) diff --git a/setup.py b/setup.py index c15b47b5..12e6d5c8 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, 5, 0) +VERSION = (7, 5, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))