diff --git a/Changelog.rst b/Changelog.rst index 25073260..bbedb4bc 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,12 @@ Changelog ========= +8.15.1 (2024-08-19) +------------------- + +* Added support for the ``semantic_text`` field and ``semantic`` query type (`#1881 `_) +* Removed extra ``__orig_class__`` attribute in aggregation responses (`#1877 `_) + 8.15.0 (2024-08-09) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index e7e86a1f..821a2e3b 100644 --- a/elasticsearch_dsl/__init__.py +++ b/elasticsearch_dsl/__init__.py @@ -95,7 +95,7 @@ from .utils import AttrDict, AttrList, DslBase from .wrappers import Range -VERSION = (8, 15, 0) +VERSION = (8, 15, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) __all__ = [ diff --git a/setup.py b/setup.py index f7953b77..c9d6f69f 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 15, 0) +VERSION = (8, 15, 1) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))