Version bump for 1.4 release

This commit is contained in:
Honza Král
2015-02-11 22:22:38 +01:00
parent 293e8a3aca
commit cdb04dfa01
4 changed files with 7 additions and 6 deletions
+4 -3
View File
@@ -3,15 +3,16 @@
Changelog
=========
1.4.0 (dev)
-----------
1.4.0 (2015-02-11)
------------------
* Using insecure SSL configuration (``verify_cert=False``) raises a warning
* ``reindex`` accepts a query parameter
* ``reindex`` accepts a ``query`` parameter
* enable ``reindex`` helper to accept any kwargs for underlying ``bulk`` and
``scan`` calls
* when doing an initial sniff (via ``sniff_on_start``) ignore special sniff timeout
* option to treat ``TransportError`` as normal failure in ``bulk`` helpers
* fixed an issue with sniffing when only a single host was passed in
1.3.0 (2014-12-31)
------------------
+1 -1
View File
@@ -52,7 +52,7 @@ copyright = u'2013, Honza Král'
# The short X.Y version.
version = '1.4.0'
# The full version, including alpha/beta/rc tags.
release = '1.4.0-dev'
release = '1.4.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (1, 4, 0, 'dev')
VERSION = (1, 4, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
import sys
import os
VERSION = (1, 4, 0, 'dev')
VERSION = (1, 4, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))