Skip to content

Commit

Permalink
Bump version to 6.1.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
honzakral committed Nov 14, 2017
1 parent ad4f83f commit d9fa510
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
Changelog
=========

6.0.0 (dev)
6.1.0 (dev)
-----------

6.0.0 (2017-11-14)
------------------

* compatibility with Elasticsearch 6.0.0

5.5.0 (2017-11-10)
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 = (6, 0, 0)
VERSION = (6, 1, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages
import sys

VERSION = (6, 0, 0)
VERSION = (6, 1, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

Expand Down

0 comments on commit d9fa510

Please sign in to comment.