Version bump
This commit is contained in:
+7
-1
@@ -3,9 +3,15 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
0.4.5 (dev)
|
1.0.0 (dev)
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
Elasticsearch 1.0 compatibility. See 0.4.X releases (and 0.4 branch) for code
|
||||||
|
compatible with 0.90 elasticsearch.
|
||||||
|
|
||||||
|
* major breaking change - compatible with 1.0 elasticsearch releases only!
|
||||||
|
* Add an option to change the timeout used for sniff requests (`sniff_timeout`).
|
||||||
|
* empty responses from the server are now returned as empty strings instead of None
|
||||||
* `get_alias` now has `name` as another optional parameter due to issue #4539
|
* `get_alias` now has `name` as another optional parameter due to issue #4539
|
||||||
in es repo. Note that the order of params have changed so if you are not
|
in es repo. Note that the order of params have changed so if you are not
|
||||||
using keyword arguments this is a breaking change.
|
using keyword arguments this is a breaking change.
|
||||||
|
|||||||
+2
-2
@@ -50,9 +50,9 @@ copyright = u'2013, Honza Král'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.4.4'
|
version = '1.0.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.4.4'
|
release = '1.0.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
VERSION = (0, 4, 4)
|
VERSION = (1, 0, 0)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = '.'.join(map(str, VERSION))
|
__versionstr__ = '.'.join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
|
|||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
|
||||||
VERSION = (0, 4, 4)
|
VERSION = (1, 0, 0)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = '.'.join(map(str, VERSION))
|
__versionstr__ = '.'.join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user