From f638c3f625537830bc966082d0907fc4bf6b428f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Sun, 12 Feb 2017 16:26:02 +0100 Subject: [PATCH] bump version to 2.0 --- .travis.yml | 4 ++-- Changelog.rst | 4 ++-- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6a534430..905916c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ addons: env: # different connection classes to test - - TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.1.1 - - TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.1.1 + - TEST_ES_CONNECTION=Urllib3HttpConnection ES_VERSION=5.2.0 + - TEST_ES_CONNECTION=RequestsHttpConnection ES_VERSION=5.2.0 before_install: - sudo update-java-alternatives -s java-8-oracle diff --git a/Changelog.rst b/Changelog.rst index 0ce112e8..273e59aa 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -5.2.0 (dev) ------------ +5.2.0 (2017-02-12) +------------------ The client now automatically sends ``Content-Type`` http header set to ``application/json``. If you are explicitly passing in other encoding than diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index bb69be0e..90386a77 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (5, 2, 0, 'dev') +VERSION = (5, 2, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 964a43e1..77a54613 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from os.path import join, dirname from setuptools import setup, find_packages import sys -VERSION = (5, 2, 0, 'dev') +VERSION = (5, 2, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))