From 214de4485874a2ad16901030fa539b7dff7e0edd Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Mon, 7 Oct 2024 12:58:47 +0100 Subject: [PATCH] Bring 8.15.4 release to main (#1924) --- 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 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))