Skip to content

Commit

Permalink
Version bump for 5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Oct 19, 2016
1 parent 8b96556 commit ae0073c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

5.0.0 (dev)
-----------
5.0.0 (2016-10-19)
------------------

Version compatible with elasticsearch 5.0

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# 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.
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/__init__.py
Original file line number Diff line number Diff line change
@@ -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))

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit ae0073c

Please sign in to comment.