diff --git a/Changelog.rst b/Changelog.rst index 53976437..1fca1db7 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +8.15.4 (2024-10-07) +------------------- + +* Fixed the use of dictionaries as values in ``Terms`` query (`#1920 `_) + 8.15.3 (2024-09-12) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index a703eac8..656924bf 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, 3) +VERSION = (8, 15, 4) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) __all__ = [ diff --git a/setup.py b/setup.py index 3b2c71e9..5e36e6c7 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 15, 3) +VERSION = (8, 15, 4) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))