From 5ecfc70a1632ad3daa0f0285a10f06c1c653dd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Wed, 11 Jan 2017 15:45:55 +0100 Subject: [PATCH] bunp version to 5.1.0 for release --- Changelog.rst | 6 ++++-- docs/conf.py | 6 +++--- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 406de6b2..27b6cb19 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,10 @@ Changelog ========= -5.1.0 (dev) ------------ +5.1.0 (2017-01-11) +------------------ + + * Fixed sniffing 5.0.1 (2016-11-02) ------------------ diff --git a/docs/conf.py b/docs/conf.py index aa29f2dd..38b0b26d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,11 +50,11 @@ copyright = u'2013, Honza Král' # built documents. # - +import elasticsearch # The short X.Y version. -version = '5.1.0' +version = elasticsearch.__versionstr__ # The full version, including alpha/beta/rc tags. -release = '5.1.0-dev' +release = version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 8136feab..8f932b41 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -VERSION = (5, 1, 0, 'dev') +VERSION = (5, 1, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 5d44886c..4712c117 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, 1, 0, 'dev') +VERSION = (5, 1, 0) __version__ = VERSION __versionstr__ = '.'.join(map(str, VERSION))