Skip to content

Commit 1705390

Browse files
Release 8.15.4 (#1923)
1 parent e49d851 commit 1705390

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Changelog
44
=========
55

6+
8.15.4 (2024-10-07)
7+
-------------------
8+
9+
* Fixed the use of dictionaries as values in ``Terms`` query (`#1920 <https://github.com/elastic/elasticsearch-dsl-py/issues/1920>`_)
10+
611
8.15.3 (2024-09-12)
712
-------------------
813

elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
from .utils import AttrDict, AttrList, DslBase
9696
from .wrappers import Range
9797

98-
VERSION = (8, 15, 3)
98+
VERSION = (8, 15, 4)
9999
__version__ = VERSION
100100
__versionstr__ = ".".join(map(str, VERSION))
101101
__all__ = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

22-
VERSION = (8, 15, 3)
22+
VERSION = (8, 15, 4)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)