bump version to 2.0

This commit is contained in:
Honza Král
2017-02-12 16:26:02 +01:00
parent fc25175130
commit f638c3f625
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ addons:
env: env:
# different connection classes to test # different connection classes to test
- TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.1.1 - TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.2.0
- TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.1.1 - TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.2.0
before_install: before_install:
- sudo update-java-alternatives -s java-8-oracle - sudo update-java-alternatives -s java-8-oracle
+2 -2
View File
@@ -3,8 +3,8 @@
Changelog Changelog
========= =========
5.2.0 (dev) 5.2.0 (2017-02-12)
----------- ------------------
The client now automatically sends ``Content-Type`` http header set to The client now automatically sends ``Content-Type`` http header set to
``application/json``. If you are explicitly passing in other encoding than ``application/json``. If you are explicitly passing in other encoding than
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import from __future__ import absolute_import
VERSION = (5, 2, 0, 'dev') VERSION = (5, 2, 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 = (5, 2, 0, 'dev') VERSION = (5, 2, 0)
__version__ = VERSION __version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION)) __versionstr__ = '.'.join(map(str, VERSION))