File tree 4 files changed +12
-8
lines changed
4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
- 2.4.0 (dev )
7
- -----------
6
+ 2.4.0 (2016-08-17 )
7
+ ------------------
8
8
9
9
* ``ping `` now ignores all ``TransportError `` exceptions and just returns
10
10
``False ``
11
+ * expose ``scroll_id `` on ``ScanError ``
12
+ * increase default size for ``scan `` helper to 1000
13
+
14
+ Internal:
15
+
16
+ * changed ``Transport.perform_request `` to just return the body, not status as well.
11
17
12
18
2.3.0 (2016-02-29)
13
19
------------------
Original file line number Diff line number Diff line change 50
50
# built documents.
51
51
#
52
52
53
- import elasticsearch
54
53
# The short X.Y version.
55
- version = elasticsearch . __versionstr__
54
+ version = '2.4.0'
56
55
# The full version, including alpha/beta/rc tags.
57
- release = version
56
+ release = '2.4.0'
58
57
59
58
# The language for content autogenerated by Sphinx. Refer to documentation
60
59
# 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 = (2 , 3 , 0 )
3
+ VERSION = (2 , 4 , 0 )
4
4
__version__ = VERSION
5
5
__versionstr__ = '.' .join (map (str , VERSION ))
6
6
Original file line number Diff line number Diff line change 2
2
from os .path import join , dirname
3
3
from setuptools import setup , find_packages
4
4
import sys
5
- import os
6
5
7
- VERSION = (2 , 3 , 0 )
6
+ VERSION = (2 , 4 , 0 )
8
7
__version__ = VERSION
9
8
__versionstr__ = '.' .join (map (str , VERSION ))
10
9
You can’t perform that action at this time.
0 commit comments