From 170539085c0f6229f297b7aa63315a405f7dfe7d Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Mon, 7 Oct 2024 12:51:30 +0100 Subject: [PATCH] Release 8.15.4 (#1923) --- Changelog.rst | 5 +++++ elasticsearch_dsl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 7f1a1f60..32b2378c 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))