Bump to version 7.0.1
This commit is contained in:
+10
-1
@@ -2,8 +2,17 @@
|
|||||||
|
|
||||||
Changelog
|
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``.
|
* Removed deprecated option ``update_all_types``.
|
||||||
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can
|
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# flake8: noqa
|
# flake8: noqa
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
VERSION = (7, 0, 0)
|
VERSION = (7, 0, 1)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = ".".join(map(str, VERSION))
|
__versionstr__ = ".".join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from os.path import join, dirname
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (7, 0, 0)
|
VERSION = (7, 0, 1)
|
||||||
__version__ = VERSION
|
__version__ = VERSION
|
||||||
__versionstr__ = ".".join(map(str, VERSION))
|
__versionstr__ = ".".join(map(str, VERSION))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user