Skip to content

Commit

Permalink
Release 8.15.4 (#1923)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg authored Oct 7, 2024
1 parent e49d851 commit 1705390
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

8.15.4 (2024-10-07)
-------------------

* Fixed the use of dictionaries as values in ``Terms`` query (`#1920 <https://github.com/elastic/elasticsearch-dsl-py/issues/1920>`_)

8.15.3 (2024-09-12)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit 1705390

Please sign in to comment.