Skip to content

Commit 699c040

Browse files
committed
Version bump to 1.5.0
1 parent 10c36ad commit 699c040

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Changelog.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
Changelog
44
=========
55

6-
1.5.0 (dev)
7-
-----------
6+
1.5.0 (2015-05-18)
7+
------------------
88

99
* Add support for ``query_cache`` parameter when searching
1010
* helpers have been made more secure by changing defaults to raise an
1111
exception on errors
1212
* removed deprecated options ``replication`` and the deprecated benchmark api.
13+
* Added ``AddonClient`` class to allow for extending the client from outside
1314

1415
1.4.0 (2015-02-11)
1516
------------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.5.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.5.0-dev'
55+
release = '1.5.0'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
VERSION = (1, 5, 0, 'dev')
3+
VERSION = (1, 5, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import os
66

7-
VERSION = (1, 5, 0, 'dev')
7+
VERSION = (1, 5, 0)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))
1010

0 commit comments

Comments
 (0)