Skip to content

Commit 07fef33

Browse files
committed
Version bump to 7.1.0
1 parent 1bb8f50 commit 07fef33

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ python:
99
- "3.5"
1010
- "3.6"
1111
- "3.7"
12+
- "3.8"
1213

1314
env:
1415
# different connection classes to test

Changelog.rst

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,49 @@
22

33
Changelog
44
=========
5-
7.1.0 (dev)
6-
-----------
5+
6+
7.1.0 (2019-11-14)
7+
------------------
8+
* Fix sniffing with ``http.publish_host``
9+
* Fix ``request_timeout`` for ``indices`` APIs
10+
* Allow access to ``x-pack`` features without ``xpack`` namespace
11+
* Fix mark dead
712

813
7.0.5 (2019-10-01)
9-
-----------
14+
------------------
1015
* Fix ``verify_certs=False``
1116

1217
7.0.4 (2019-08-22)
13-
-----------
18+
------------------
1419
* Fix wheel distribution
1520

1621
7.0.3 (2019-08-21)
17-
-----------
22+
------------------
1823
* remove sleep in retries
1924
* pass ``scroll_id`` through body in ``scroll``
2025
* add ``user-agent``
2126

2227
7.0.2 (2019-05-29)
23-
-----------
28+
------------------
2429
* Add connection parameter for Elastic Cloud cloud_id.
2530
* ML client uses client object for _bulk_body requests
2631

2732
7.0.1 (2019-05-19)
28-
-----------
33+
------------------
2934
* Use black to format the code.
3035
* Update the test matrix to only use current pythons and 7.x ES
3136
* Blocking pool must fit thread_count
3237
* Update client to support missing ES 7 API's and query params.
3338

3439
7.0.0 (2019-04-11)
35-
-----------
40+
------------------
3641
* Removed deprecated option ``update_all_types``.
3742
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can
3843
be not showed with ``ssl_show_warn=False``
3944
* Add support for 7.x api's in Elasticsearch both xpack and oss flavors
45+
4046
6.3.0 (2018-06-20)
41-
-----------
47+
------------------
4248

4349
* Add an exponential wait on delays
4450
* Fix issues with dependencies

elasticsearch/__init__.py

Lines changed: 1 addition & 1 deletion
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, 5)
4+
VERSION = (7, 1, 0)
55
__version__ = VERSION
66
__versionstr__ = ".".join(map(str, VERSION))
77

setup.py

Lines changed: 2 additions & 4 deletions
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, 5)
6+
VERSION = (7, 1, 0)
77
__version__ = VERSION
88
__versionstr__ = ".".join(map(str, VERSION))
99

@@ -42,15 +42,13 @@
4242
"Operating System :: OS Independent",
4343
"Programming Language :: Python",
4444
"Programming Language :: Python :: 2",
45-
"Programming Language :: Python :: 2.6",
4645
"Programming Language :: Python :: 2.7",
4746
"Programming Language :: Python :: 3",
48-
"Programming Language :: Python :: 3.2",
49-
"Programming Language :: Python :: 3.3",
5047
"Programming Language :: Python :: 3.4",
5148
"Programming Language :: Python :: 3.5",
5249
"Programming Language :: Python :: 3.6",
5350
"Programming Language :: Python :: 3.7",
51+
"Programming Language :: Python :: 3.8",
5452
"Programming Language :: Python :: Implementation :: CPython",
5553
"Programming Language :: Python :: Implementation :: PyPy",
5654
],

0 commit comments

Comments
 (0)