Skip to content

Commit 3bff854

Browse files
committed
Bump version to 6.3.1
1 parent cb6f09b commit 3bff854

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ Changelog
55

66
6.4.0 (dev)
77
-----------
8+
9+
6.3.1 (2018-08-09)
10+
------------------
811
* Removed deprecated option ``update_all_types``.
12+
* Pass retry object instead of False in urllib3
13+
* Add support for `allow_partial_search_results`
14+
* Deprecate `update_all_types`
915

1016
6.3.0 (2018-06-20)
1117
-----------

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

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

setup.py

Lines changed: 1 addition & 1 deletion
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, 3, 0)
6+
VERSION = (6, 3, 1)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)