From af86fa8d61cd633f4ac6f4cf06da72828a4c71ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Tue, 13 Oct 2015 23:38:31 +0200 Subject: [PATCH] 2.0 version bump --- Changelog.rst | 9 +++++++-- docs/conf.py | 4 ++-- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 1e152f11..465215e9 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,13 @@ Changelog ========= -1.8.0 ------ +2.0.0 (2015-10-14) +------------------ + + * Elasticsearch 2.0 compatibility release + +1.8.0 (2015-10-14) +------------------ * removed thrift and memcached connections, if you wish to continue using those, extract the classes and use them separately. diff --git a/docs/conf.py b/docs/conf.py index fd47cd89..82fcd67d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2013, Honza Král' # built documents. # # The short X.Y version. -version = '1.7.0' +version = '2.0.0' # The full version, including alpha/beta/rc tags. -release = '1.7.0' +release = '2.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index ec904dba..f893a862 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (1, 7, 0) +VERSION = (2, 0, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 113bc190..5afdf984 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages import sys import os -VERSION = (1, 7, 0) +VERSION = (2, 0, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))