Skip to content

Commit

Permalink
Merge branch 'master' into 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
untergeek committed Apr 12, 2023
2 parents fae9259 + e13dbf3 commit 5220159
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
13 changes: 13 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch8==8.6.2
elasticsearch8==8.7.0
voluptuous>=0.13.1
pyyaml==6.0.0
pint>=0.19.2
2 changes: 1 addition & 1 deletion es_client/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Release version"""
__version__ = '8.6.2.post1'
__version__ = '8.7.0'
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -39,6 +39,7 @@ test = [
"requests",
"pytest >=7.2.1",
"pytest-cov",
"mock",
]
doc = ["sphinx", "sphinx_rtd_theme"]

Expand Down Expand Up @@ -69,4 +70,4 @@ addopts = "-ra -q"
testpaths = [
"tests/unit",
"tests/integration",
]
]

0 comments on commit 5220159

Please sign in to comment.