Bump to version 6.1.1

This commit is contained in:
Nick Lang
2018-01-05 19:51:20 -07:00
parent 43ddb3d56b
commit ef08323d22
3 changed files with 9 additions and 4 deletions
+7 -2
View File
@@ -6,6 +6,11 @@ Changelog
6.1.0 (dev)
-----------
6.1.1 (2017-01-05)
------------------
* Updates to SSLContext logic to make it easier to use and have saner defaults.
* Doc updates
6.0.0 (2017-11-14)
------------------
@@ -60,7 +65,7 @@ Version compatible with elasticsearch 5.0
connection classes need to be updated
* added ``headers`` arg to connections to support custom http headers
* passing in a keyword parameter with ``None`` as value will cause that param
to be ignored
to be ignored
2.4.0 (2016-08-17)
------------------
@@ -223,7 +228,7 @@ compatible with 0.90 elasticsearch.
0.4.2 (2013-10-08)
------------------
* ``ignore`` param accepted by all APIs
* Fixes to ``helpers.bulk_index``
+1 -1
View File
@@ -1,6 +1,6 @@
from __future__ import absolute_import
VERSION = (6, 1, 0, 'dev')
VERSION = (6, 1, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
+1 -1
View File
@@ -3,7 +3,7 @@ from os.path import join, dirname
from setuptools import setup, find_packages
import sys
VERSION = (6, 1, 0, 'dev')
VERSION = (6, 1, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))