Skip to content

Commit cdb04df

Browse files
committed
Version bump for 1.4 release
1 parent 293e8a3 commit cdb04df

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Changelog.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
Changelog
44
=========
55

6-
1.4.0 (dev)
7-
-----------
6+
1.4.0 (2015-02-11)
7+
------------------
88

99
* Using insecure SSL configuration (``verify_cert=False``) raises a warning
10-
* ``reindex`` accepts a query parameter
10+
* ``reindex`` accepts a ``query`` parameter
1111
* enable ``reindex`` helper to accept any kwargs for underlying ``bulk`` and
1212
``scan`` calls
1313
* when doing an initial sniff (via ``sniff_on_start``) ignore special sniff timeout
1414
* option to treat ``TransportError`` as normal failure in ``bulk`` helpers
15+
* fixed an issue with sniffing when only a single host was passed in
1516

1617
1.3.0 (2014-12-31)
1718
------------------

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.4.0'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.4.0-dev'
55+
release = '1.4.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, 4, 0, 'dev')
3+
VERSION = (1, 4, 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, 4, 0, 'dev')
7+
VERSION = (1, 4, 0)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))
1010

0 commit comments

Comments
 (0)