File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 33Changelog
44=========
55
6- 2.4.0 (dev )
7- -----------
6+ 2.4.0 (2016-08-17 )
7+ ------------------
88
99 * ``ping `` now ignores all ``TransportError `` exceptions and just returns
1010 ``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.
1117
12182.3.0 (2016-02-29)
1319------------------
Original file line number Diff line number Diff line change 5050# built documents.
5151#
5252
53- import elasticsearch
5453# The short X.Y version.
55- version = elasticsearch . __versionstr__
54+ version = '2.4.0'
5655# The full version, including alpha/beta/rc tags.
57- release = version
56+ release = '2.4.0'
5857
5958# The language for content autogenerated by Sphinx. Refer to documentation
6059# for a list of supported languages.
Original file line number Diff line number Diff line change 11from __future__ import absolute_import
22
3- VERSION = (2 , 3 , 0 )
3+ VERSION = (2 , 4 , 0 )
44__version__ = VERSION
55__versionstr__ = '.' .join (map (str , VERSION ))
66
Original file line number Diff line number Diff line change 22from os .path import join , dirname
33from setuptools import setup , find_packages
44import sys
5- import os
65
7- VERSION = (2 , 3 , 0 )
6+ VERSION = (2 , 4 , 0 )
87__version__ = VERSION
98__versionstr__ = '.' .join (map (str , VERSION ))
109
You can’t perform that action at this time.
0 commit comments