From d9fa510fa6cea9236e732353cd3276fe11753a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Tue, 14 Nov 2017 15:27:59 +0100 Subject: [PATCH] Bump version to 6.1.0-dev --- Changelog.rst | 5 ++++- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index af063091..e88975ae 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -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) diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 2b74f3e2..0598a9c7 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -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)) diff --git a/setup.py b/setup.py index 79118d8c..d966ed37 100644 --- a/setup.py +++ b/setup.py @@ -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))