Version bump

This commit is contained in:
Honza Král
2014-02-11 00:42:01 +01:00
parent b560993c4e
commit 47b8dc948e
4 changed files with 11 additions and 5 deletions
+7 -1
View File
@@ -3,9 +3,15 @@
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
in es repo. Note that the order of params have changed so if you are not
using keyword arguments this is a breaking change.
+2 -2
View File
@@ -50,9 +50,9 @@ copyright = u'2013, Honza Král'
# built documents.
#
# The short X.Y version.
version = '0.4.4'
version = '1.0.0'
# 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
# for a list of supported languages.
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (0, 4, 4)
VERSION = (1, 0, 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 = (0, 4, 4)
VERSION = (1, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))