diff --git a/Changelog.rst b/Changelog.rst index bbedb4bc..200907c9 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,14 @@ Changelog ========= +8.15.2 (2024-09-04) +------------------- + +* Added support for any iterables to The ``Terms`` query (`#1887 `_) +* Added back support for tuples and other iterables to ``Search.source()`` method (`#1895 `_) +* Added recursive option to ``AttrDict.to_dict()`` (`#1892 `_) +* Removed unused analyzer from search as you type example (`#1883 `_) + 8.15.1 (2024-08-19) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index 821a2e3b..e87b4d93 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, 1) +VERSION = (8, 15, 2) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) __all__ = [ diff --git a/setup.py b/setup.py index c9d6f69f..98260e0e 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 15, 1) +VERSION = (8, 15, 2) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))