Skip to content

Commit 1c7b23e

Browse files
committed
version bump to 2.3.0
1 parent 5dfd698 commit 1c7b23e

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Changelog
44
=========
55

6+
2.3.0 (2016-02-29)
7+
------------------
8+
9+
* added ``client_key`` argument to configure client certificates
10+
* debug logging now includes response body even for failed requests
11+
612
2.2.0 (2016-01-05)
713
------------------
814

docs/conf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,12 @@
4949
# |version| and |release|, also used in various other places throughout the
5050
# built documents.
5151
#
52+
53+
import elasticsearch
5254
# The short X.Y version.
53-
version = '2.2.0'
55+
version = elasticsearch.__versionstr__
5456
# The full version, including alpha/beta/rc tags.
55-
release = '2.2.0'
57+
release = version
5658

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

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import absolute_import
22

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import os
66

7-
VERSION = (2, 2, 0)
7+
VERSION = (2, 3, 0)
88
__version__ = VERSION
99
__versionstr__ = '.'.join(map(str, VERSION))
1010

0 commit comments

Comments
 (0)