From 2f62f9e3d4683b284943051497dd3de32afff778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Thu, 30 Mar 2017 22:32:38 -0700 Subject: [PATCH] version bump for 5.3 --- 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 273e59aa8a..309ba5ca07 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +5.3.0 (2017-03-30) +------------------ + +Compatibility with elasticsearch 5.3 + 5.2.0 (2017-02-12) ------------------ diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 90386a7717..b2d32f1b84 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (5, 2, 0) +VERSION = (5, 3, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 77a54613ed..c2a1a75623 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages import sys -VERSION = (5, 2, 0) +VERSION = (5, 3, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))