Skip to content

Commit c4f0454

Browse files
committed
Bump to version 7.0.1
1 parent 8e92b85 commit c4f0454

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Changelog.rst

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22

33
Changelog
44
=========
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.
514

6-
7.0.0 (dev)
15+
7.0.0 (2019-04-11)
716
-----------
817
* Removed deprecated option ``update_all_types``.
918
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can

elasticsearch/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# flake8: noqa
22
from __future__ import absolute_import
33

4-
VERSION = (7, 0, 0)
4+
VERSION = (7, 0, 1)
55
__version__ = VERSION
66
__versionstr__ = ".".join(map(str, VERSION))
77

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

0 commit comments

Comments
 (0)