bunp version to 5.1.0 for release
This commit is contained in:
+4
-2
@@ -3,8 +3,10 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
5.1.0 (dev)
|
5.1.0 (2017-01-11)
|
||||||
-----------
|
------------------
|
||||||
|
|
||||||
|
* Fixed sniffing
|
||||||
|
|
||||||
5.0.1 (2016-11-02)
|
5.0.1 (2016-11-02)
|
||||||
------------------
|
------------------
|
||||||
|
|||||||
+3
-3
@@ -50,11 +50,11 @@ copyright = u'2013, Honza Král'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
import elasticsearch
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '5.1.0'
|
version = elasticsearch.__versionstr__
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '5.1.0-dev'
|
release = version
|
||||||
|
|
||||||
# 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 = (5, 1, 0, 'dev')
|
VERSION = (5, 1, 0)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = '.'.join(map(str, VERSION))
|
__versionstr__ = '.'.join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from os.path import join, dirname
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (5, 1, 0, 'dev')
|
VERSION = (5, 1, 0)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = '.'.join(map(str, VERSION))
|
__versionstr__ = '.'.join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user