Skip to content

Commit 4189be4

Browse files
committed
Bump to version 5.5.2
1 parent aa34002 commit 4189be4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Changelog.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Changelog
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+
612
5.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

6268
2.4.0 (2016-08-17)
6369
------------------
@@ -220,7 +226,7 @@ compatible with 0.90 elasticsearch.
220226

221227
0.4.2 (2013-10-08)
222228
------------------
223-
229+
224230
* ``ignore`` param accepted by all APIs
225231
* Fixes to ``helpers.bulk_index``
226232

elasticsearch5/__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 = (5, 5, 1)
3+
VERSION = (5, 5, 2)
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
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44
import sys
55

6-
VERSION = (5, 5, 1)
6+
VERSION = (5, 5, 2)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)