bunp version to 5.1.0 for release

This commit is contained in:
Honza Král
2017-01-11 15:45:55 +01:00
parent 0bf58d7717
commit 5ecfc70a16
4 changed files with 9 additions and 7 deletions
+4 -2
View File
@@ -3,8 +3,10 @@
Changelog
=========
5.1.0 (dev)
-----------
5.1.0 (2017-01-11)
------------------
* Fixed sniffing
5.0.1 (2016-11-02)
------------------
+3 -3
View File
@@ -50,11 +50,11 @@ copyright = u'2013, Honza Král'
# built documents.
#
import elasticsearch
# The short X.Y version.
version = '5.1.0'
version = elasticsearch.__versionstr__
# 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
# for a list of supported languages.
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (5, 1, 0, 'dev')
VERSION = (5, 1, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -3,7 +3,7 @@ from os.path import join, dirname
from setuptools import setup, find_packages
import sys
VERSION = (5, 1, 0, 'dev')
VERSION = (5, 1, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))