Skip to content

Commit ef08323

Browse files
committed
Bump to version 6.1.1
1 parent 43ddb3d commit ef08323

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Changelog.rst

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Changelog
66
6.1.0 (dev)
77
-----------
88

9+
6.1.1 (2017-01-05)
10+
------------------
11+
* Updates to SSLContext logic to make it easier to use and have saner defaults.
12+
* Doc updates
13+
914
6.0.0 (2017-11-14)
1015
------------------
1116

@@ -60,7 +65,7 @@ Version compatible with elasticsearch 5.0
6065
connection classes need to be updated
6166
* added ``headers`` arg to connections to support custom http headers
6267
* passing in a keyword parameter with ``None`` as value will cause that param
63-
to be ignored
68+
to be ignored
6469

6570
2.4.0 (2016-08-17)
6671
------------------
@@ -223,7 +228,7 @@ compatible with 0.90 elasticsearch.
223228

224229
0.4.2 (2013-10-08)
225230
------------------
226-
231+
227232
* ``ignore`` param accepted by all APIs
228233
* Fixes to ``helpers.bulk_index``
229234

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

setup.py

+1-1
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 = (6, 1, 0, 'dev')
6+
VERSION = (6, 1, 1)
77
__version__ = VERSION
88
__versionstr__ = '.'.join(map(str, VERSION))
99

0 commit comments

Comments
 (0)