From 699c040eaf5d19b25b7166d94c88162baf01bc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Mon, 18 May 2015 16:03:00 +0200 Subject: [PATCH] Version bump to 1.5.0 --- Changelog.rst | 5 +++-- docs/conf.py | 2 +- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 0666b709..1d15ec7b 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,13 +3,14 @@ Changelog ========= -1.5.0 (dev) ------------ +1.5.0 (2015-05-18) +------------------ * Add support for ``query_cache`` parameter when searching * helpers have been made more secure by changing defaults to raise an exception on errors * removed deprecated options ``replication`` and the deprecated benchmark api. + * Added ``AddonClient`` class to allow for extending the client from outside 1.4.0 (2015-02-11) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 4f74cf9b..bce9eb47 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ copyright = u'2013, Honza Král' # The short X.Y version. version = '1.5.0' # The full version, including alpha/beta/rc tags. -release = '1.5.0-dev' +release = '1.5.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 688e1712..c6ce60a8 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (1, 5, 0, 'dev') +VERSION = (1, 5, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 462ed73c..c487f263 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages import sys import os -VERSION = (1, 5, 0, 'dev') +VERSION = (1, 5, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))