Bump version to 6.3.0

This commit is contained in:
Nick Lang
2018-06-20 11:55:11 -06:00
parent 4352e56174
commit e0fb772bcc
3 changed files with 10 additions and 3 deletions
+8 -1
View File
@@ -3,9 +3,16 @@
Changelog Changelog
========= =========
6.3.0 (dev) 6.4.0 (dev)
----------- -----------
6.3.0 (2018-06-20)
-----------
* Add an exponential wait on delays
* Fix issues with dependencies
* Adding X-pack Docs
* Adding forecast to x-pack ML client
6.2.0 (2018-03-20) 6.2.0 (2018-03-20)
------------------ ------------------
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import from __future__ import absolute_import
VERSION = (6, 2, 0) VERSION = (6, 3, 0)
__version__ = VERSION __version__ = VERSION
__versionstr__ = '.'.join(map(str, 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 from setuptools import setup, find_packages
import sys import sys
VERSION = (6, 2, 0) VERSION = (6, 3, 0)
__version__ = VERSION __version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION)) __versionstr__ = '.'.join(map(str, VERSION))