Version bump for 7.5.1 release

This commit is contained in:
Honza Král
2020-01-19 01:56:14 +01:00
parent fba8e60ca8
commit a9cdb24700
3 changed files with 9 additions and 3 deletions
+7 -1
View File
@@ -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)
+1 -1
View File
@@ -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))
+1 -1
View File
@@ -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))