Skip to content

Commit f638c3f

Browse files
committed
bump version to 2.0
1 parent fc25175 commit f638c3f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ addons:
1414

1515
env:
1616
# different connection classes to test
17-
- TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.1.1
18-
- TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.1.1
17+
- TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.2.0
18+
- TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.2.0
1919

2020
before_install:
2121
- sudo update-java-alternatives -s java-8-oracle

Changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
5.2.0 (dev)
7-
-----------
6+
5.2.0 (2017-02-12)
7+
------------------
88

99
The client now automatically sends ``Content-Type`` http header set to
1010
``application/json``. If you are explicitly passing in other encoding than

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 = (5, 2, 0, 'dev')
3+
VERSION = (5, 2, 0)
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 = (5, 2, 0, 'dev')
6+
VERSION = (5, 2, 0)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)