From 78f0375aa11e4662bc61ddb6e15b87133c18ac82 Mon Sep 17 00:00:00 2001 From: Aaron Mildenstein Date: Wed, 12 Apr 2023 12:54:09 -0600 Subject: [PATCH] Release prep for v8.7.0 --- docs/Changelog.rst | 13 +++++++++++++ docs/conf.py | 2 +- docs/requirements.txt | 2 +- es_client/version.py | 2 +- pyproject.toml | 5 +++-- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/docs/Changelog.rst b/docs/Changelog.rst index 41672e7..ff0c407 100644 --- a/docs/Changelog.rst +++ b/docs/Changelog.rst @@ -3,6 +3,19 @@ Changelog ========= +8.7.0 (12 April 2023) +--------------------- + +**Announcement** + +Apologies for the delayed release. I have had some personal matters that had me +out of office for several weeks. + +**Changes** + + * Bring up to date with Elasticsearch 8.7.0 Python client. + * Add ``mock`` to the list of modules for testing + 8.6.2.post1 (23 March 2023) --------------------------- diff --git a/docs/conf.py b/docs/conf.py index b934145..98c9c25 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,7 +65,7 @@ intersphinx_mapping = { 'python': ('https://docs.python.org/3.11', None), - 'elasticsearch8': ('https://elasticsearch-py.readthedocs.io/en/v8.6.2', None), + 'elasticsearch8': ('https://elasticsearch-py.readthedocs.io/en/v8.7.0', None), 'elastic-transport': ('https://elastic-transport-python.readthedocs.io/en/stable', None), 'voluptuous': ('http://alecthomas.github.io/voluptuous/docs/_build/html', None), 'click': ('https://click.palletsprojects.com/en/8.1.x', None), diff --git a/docs/requirements.txt b/docs/requirements.txt index 46c1632..d02ae28 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -elasticsearch8==8.6.2 +elasticsearch8==8.7.0 voluptuous>=0.13.1 pyyaml==6.0.0 pint>=0.19.2 diff --git a/es_client/version.py b/es_client/version.py index 4a8b1c9..167b6c1 100644 --- a/es_client/version.py +++ b/es_client/version.py @@ -1,2 +1,2 @@ """Release version""" -__version__ = '8.6.2.post1' +__version__ = '8.7.0' diff --git a/pyproject.toml b/pyproject.toml index 3ef3ab4..0414783 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ keywords = [ "command-line" ] dependencies = [ - "elasticsearch8==8.6.2", + "elasticsearch8==8.7.0", "click==8.1.3", "pyyaml==6.0.0", "voluptuous>=0.13.1", @@ -39,6 +39,7 @@ test = [ "requests", "pytest >=7.2.1", "pytest-cov", + "mock", ] doc = ["sphinx", "sphinx_rtd_theme"] @@ -69,4 +70,4 @@ addopts = "-ra -q" testpaths = [ "tests/unit", "tests/integration", -] \ No newline at end of file +]