Skip to content

Commit c93f535

Browse files
committed
Version bump for 2.4
1 parent 60b347d commit c93f535

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

Changelog.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@
33
Changelog
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

1218
2.3.0 (2016-02-29)
1319
------------------

docs/conf.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,10 @@
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.

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 = (2, 3, 0)
3+
VERSION = (2, 4, 0)
44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))
66

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
from os.path import join, dirname
33
from setuptools import setup, find_packages
44
import 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

0 commit comments

Comments
 (0)