File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 33Changelog
44=========
55
6+ 5.5.2 (2018-01-12)
7+ ------------------
8+
9+ * Allow connection to SSL ES instances without verifying certs using
10+ client key and client cert.
11+
6125.5.1 (2017-11-10)
713------------------
814
@@ -57,7 +63,7 @@ Version compatible with elasticsearch 5.0
5763 connection classes need to be updated
5864 * added ``headers `` arg to connections to support custom http headers
5965 * passing in a keyword parameter with ``None `` as value will cause that param
60- to be ignored
66+ to be ignored
6167
62682.4.0 (2016-08-17)
6369------------------
@@ -220,7 +226,7 @@ compatible with 0.90 elasticsearch.
220226
2212270.4.2 (2013-10-08)
222228------------------
223-
229+
224230 * ``ignore `` param accepted by all APIs
225231 * Fixes to ``helpers.bulk_index ``
226232
Original file line number Diff line number Diff line change 11from __future__ import absolute_import
22
3- VERSION = (5 , 5 , 1 )
3+ VERSION = (5 , 5 , 2 )
44__version__ = VERSION
55__versionstr__ = '.' .join (map (str , VERSION ))
66
Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44import sys
55
6- VERSION = (5 , 5 , 1 )
6+ VERSION = (5 , 5 , 2 )
77__version__ = VERSION
88__versionstr__ = '.' .join (map (str , VERSION ))
99
You can’t perform that action at this time.
0 commit comments