Skip to content

Commit 9234b37

Browse files
committed
Version bump for 5.0.1
1 parent 2baa3d6 commit 9234b37

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Changelog.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
Changelog
44
=========
55

6-
5.0.0 (2016-10-19)
6+
5.0.1 (2016-11-02)
7+
------------------
8+
9+
Fixed performance regression in ``scan`` helper
10+
11+
5.0.1 (2016-10-19)
712
------------------
813

914
Version compatible with elasticsearch 5.0

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252

5353

5454
# The short X.Y version.
55-
version = '5.0.0'
55+
version = '5.0.1'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '5.0.0'
57+
release = '5.0.1'
5858

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

elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

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

setup.py

+1-1
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, 0, 0)
6+
VERSION = (5, 0, 1)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)