From 562c8c61465af3a0263473e0ec9c5b423ec0f151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Fri, 10 Nov 2017 14:38:08 +0100 Subject: [PATCH] Bump master to 6.0.0 --- Changelog.rst | 5 +++++ elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 5e624935..af063091 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +6.0.0 (dev) +----------- + + * compatibility with Elasticsearch 6.0.0 + 5.5.0 (2017-11-10) ------------------ diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 2f366e36..2b74f3e2 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (5, 4, 0) +VERSION = (6, 0, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index aa424776..79118d8c 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 = (5, 4, 0) +VERSION = (6, 0, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))