diff --git a/Changelog.rst b/Changelog.rst index fbe59f79..4d8737d3 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,15 @@ Changelog ========= -6.2.0 (dev) +6.3.0 (dev) ----------- + + +6.2.0 (2018-03-20) +------------------ + + * cleanup for SSL Context + * Add X-Pack clients to -py * Adding Gzip support for capacity constrained networks * ``_routing`` in bulk action has been deprecated in ES. Introduces a breaking change if you use ``routing`` as a field in your documents. diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index c10d49ed..1ddd094d 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (6, 1, 1) +VERSION = (6, 2, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 504e8867..ecf4198d 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 = (6, 1, 1) +VERSION = (6, 2, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))