Skip to content

Commit e0fb772

Browse files
committed
Bump version to 6.3.0
1 parent 4352e56 commit e0fb772

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Changelog.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@
33
Changelog
44
=========
55

6-
6.3.0 (dev)
6+
6.4.0 (dev)
77
-----------
88

9+
6.3.0 (2018-06-20)
10+
-----------
11+
12+
* Add an exponential wait on delays
13+
* Fix issues with dependencies
14+
* Adding X-pack Docs
15+
* Adding forecast to x-pack ML client
916

1017
6.2.0 (2018-03-20)
1118
------------------

elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
VERSION = (6, 2, 0)
3+
VERSION = (6, 3, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44
import sys
55

6-
VERSION = (6, 2, 0)
6+
VERSION = (6, 3, 0)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)