File tree 4 files changed +10
-5
lines changed
4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
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)
7
12
------------------
8
13
9
14
Version compatible with elasticsearch 5.0
Original file line number Diff line number Diff line change 52
52
53
53
54
54
# The short X.Y version.
55
- version = '5.0.0 '
55
+ version = '5.0.1 '
56
56
# The full version, including alpha/beta/rc tags.
57
- release = '5.0.0 '
57
+ release = '5.0.1 '
58
58
59
59
# The language for content autogenerated by Sphinx. Refer to documentation
60
60
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
from __future__ import absolute_import
2
2
3
- VERSION = (5 , 0 , 0 )
3
+ VERSION = (5 , 0 , 1 )
4
4
__version__ = VERSION
5
5
__versionstr__ = '.' .join (map (str , VERSION ))
6
6
Original file line number Diff line number Diff line change 3
3
from setuptools import setup , find_packages
4
4
import sys
5
5
6
- VERSION = (5 , 0 , 0 )
6
+ VERSION = (5 , 0 , 1 )
7
7
__version__ = VERSION
8
8
__versionstr__ = '.' .join (map (str , VERSION ))
9
9
You can’t perform that action at this time.
0 commit comments