bump version to 2.0
This commit is contained in:
+2
-2
@@ -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
@@ -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,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))
|
||||||
|
|
||||||
|
|||||||
@@ -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))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user