File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 33Changelog
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+
6122.2.0 (2016-01-05)
713------------------
814
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11from __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
Original file line number Diff line number Diff line change 44import sys
55import os
66
7- VERSION = (2 , 2 , 0 )
7+ VERSION = (2 , 3 , 0 )
88__version__ = VERSION
99__versionstr__ = '.' .join (map (str , VERSION ))
1010
You can’t perform that action at this time.
0 commit comments