diff --git a/.travis.yml b/.travis.yml index ffb517f4..794e8234 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ python: - "3.5" - "3.6" - "3.7" + - "3.8" env: # different connection classes to test diff --git a/Changelog.rst b/Changelog.rst index 36ed6e92..efe822a1 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -2,43 +2,49 @@ Changelog ========= -7.1.0 (dev) ------------ + +7.1.0 (2019-11-14) +------------------ + * Fix sniffing with ``http.publish_host`` + * Fix ``request_timeout`` for ``indices`` APIs + * Allow access to ``x-pack`` features without ``xpack`` namespace + * Fix mark dead 7.0.5 (2019-10-01) ------------ +------------------ * Fix ``verify_certs=False`` 7.0.4 (2019-08-22) ------------ +------------------ * Fix wheel distribution 7.0.3 (2019-08-21) ------------ +------------------ * remove sleep in retries * pass ``scroll_id`` through body in ``scroll`` * add ``user-agent`` 7.0.2 (2019-05-29) ------------ +------------------ * Add connection parameter for Elastic Cloud cloud_id. * ML client uses client object for _bulk_body requests 7.0.1 (2019-05-19) ------------ +------------------ * 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 be not showed with ``ssl_show_warn=False`` * Add support for 7.x api's in Elasticsearch both xpack and oss flavors + 6.3.0 (2018-06-20) ------------ +------------------ * Add an exponential wait on delays * Fix issues with dependencies diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index b5567e29..34b590d6 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -1,7 +1,7 @@ # flake8: noqa from __future__ import absolute_import -VERSION = (7, 0, 5) +VERSION = (7, 1, 0) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) diff --git a/setup.py b/setup.py index a99d31bc..5436d941 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from os.path import join, dirname from setuptools import setup, find_packages import sys -VERSION = (7, 0, 5) +VERSION = (7, 1, 0) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) @@ -42,15 +42,13 @@ setup( "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ],