Bump to version 7.0.1

This commit is contained in:
Nick Lang
2019-05-10 16:51:51 -06:00
parent 8e92b857bc
commit c4f0454285
3 changed files with 12 additions and 3 deletions
+10 -1
View File
@@ -2,8 +2,17 @@
Changelog
=========
7.1.0 (dev)
-----------
7.0.0 (dev)
7.0.1 (2019-05019)
-----------
* Use black to format the code.
* Update the test matrix to only use current pythons and 7.x ES
* Blocking pool must fit thread_count
* Update client to support missing ES 7 API's and query params.
7.0.0 (2019-04-11)
-----------
* Removed deprecated option ``update_all_types``.
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can
+1 -1
View File
@@ -1,7 +1,7 @@
# flake8: noqa
from __future__ import absolute_import
VERSION = (7, 0, 0)
VERSION = (7, 0, 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 = (7, 0, 0)
VERSION = (7, 0, 1)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))