Version bump for 5.0 release

This commit is contained in:
Honza Král
2016-10-19 16:22:48 +02:00
parent 8b96556769
commit ae0073c8ca
4 changed files with 5 additions and 6 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
Changelog
=========
5.0.0 (dev)
-----------
5.0.0 (2016-10-19)
------------------
Version compatible with elasticsearch 5.0
+1 -1
View File
@@ -54,7 +54,7 @@ copyright = u'2013, Honza Král'
# The short X.Y version.
version = '5.0.0'
# The full version, including alpha/beta/rc tags.
release = '5.0.0-dev'
release = '5.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 = (5, 0, 0, 'dev')
VERSION = (5, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -2
View File
@@ -2,9 +2,8 @@
from os.path import join, dirname
from setuptools import setup, find_packages
import sys
import os
VERSION = (5, 0, 0, 'dev')
VERSION = (5, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))