Version bump for 1.4 release
This commit is contained in:
+4
-3
@@ -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
@@ -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,6 +1,6 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
VERSION = (1, 4, 0, 'dev')
|
||||
VERSION = (1, 4, 0)
|
||||
__version__ = VERSION
|
||||
__versionstr__ = '.'.join(map(str, VERSION))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user