Skip to content

Commit 5ecfc70

Browse files
committed
bunp version to 5.1.0 for release
1 parent 0bf58d7 commit 5ecfc70

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Changelog.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
Changelog
44
=========
55

6-
5.1.0 (dev)
7-
-----------
6+
5.1.0 (2017-01-11)
7+
------------------
8+
9+
* Fixed sniffing
810

911
5.0.1 (2016-11-02)
1012
------------------

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
# built documents.
5151
#
5252

53-
53+
import elasticsearch
5454
# The short X.Y version.
55-
version = '5.1.0'
55+
version = elasticsearch.__versionstr__
5656
# The full version, including alpha/beta/rc tags.
57-
release = '5.1.0-dev'
57+
release = version
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

3-
VERSION = (5, 1, 0, 'dev')
3+
VERSION = (5, 1, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44
import sys
55

6-
VERSION = (5, 1, 0, 'dev')
6+
VERSION = (5, 1, 0)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)