File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Changelog
4
4
=========
5
+ 7.1.0 (dev)
6
+ -----------
7
+
8
+ 7.0.1 (2019-05019)
9
+ -----------
10
+ * Use black to format the code.
11
+ * Update the test matrix to only use current pythons and 7.x ES
12
+ * Blocking pool must fit thread_count
13
+ * Update client to support missing ES 7 API's and query params.
5
14
6
- 7.0.0 (dev )
15
+ 7.0.0 (2019-04-11 )
7
16
-----------
8
17
* Removed deprecated option ``update_all_types ``.
9
18
* Using insecure SSL configuration (``verify_cert=False ``) raises a warning, this can
Original file line number Diff line number Diff line change 1
1
# flake8: noqa
2
2
from __future__ import absolute_import
3
3
4
- VERSION = (7 , 0 , 0 )
4
+ VERSION = (7 , 0 , 1 )
5
5
__version__ = VERSION
6
6
__versionstr__ = "." .join (map (str , VERSION ))
7
7
Original file line number Diff line number Diff line change 3
3
from setuptools import setup , find_packages
4
4
import sys
5
5
6
- VERSION = (7 , 0 , 0 )
6
+ VERSION = (7 , 0 , 1 )
7
7
__version__ = VERSION
8
8
__versionstr__ = "." .join (map (str , VERSION ))
9
9
You can’t perform that action at this time.
0 commit comments