Bump to 6.2.0

This commit is contained in:
Nick Lang
2018-03-20 13:41:15 -05:00
parent 4fda104d6e
commit d46bbdf124
3 changed files with 10 additions and 3 deletions
+8 -1
View File
@@ -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.
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (6, 1, 1)
VERSION = (6, 2, 0)
__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 = (6, 1, 1)
VERSION = (6, 2, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))