Bump version to 6.1.0-dev

This commit is contained in:
Honza Král
2017-11-14 15:27:59 +01:00
parent ad4f83f592
commit d9fa510fa6
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -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)
+1 -1
View File
@@ -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))
+1 -1
View File
@@ -3,7 +3,7 @@ from os.path import join, dirname
from setuptools import setup, find_packages
import sys
VERSION = (6, 0, 0)
VERSION = (6, 1, 0, 'dev')
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))