diff --git a/Changelog.rst b/Changelog.rst index 1349cf80..e98d26a9 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +8.18.0 (2025-04-16) +------------------- + +* This package has been added to the `Elasticsearch Python client `_. Development continues there. Consult the `migration documentation `_ for more details. (`#1972 `_) + 8.17.1 (2025-01-08) ------------------- diff --git a/setup.py b/setup.py index 4c392d01..43798207 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 17, 1) +VERSION = (8, 18, 0) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) @@ -30,8 +30,7 @@ install_requires = [ "python-dateutil", "typing-extensions", - # "elasticsearch>=8.0.0,<9.0.0", - "elasticsearch @ https://github.com/elastic/elasticsearch-py/archive/refs/heads/main.zip#egg=elasticsearch", + "elasticsearch>=8.0.0,<9.0.0", "elastic-transport>=8.0.0,<9.0.0", ]