Skip to content

Commit

Permalink
Release 8.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Sep 3, 2024
1 parent e706a01 commit 7dc3ec1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Changelog
=========

8.15.2 (2024-09-04)
-------------------

* Added support for any iterables to The ``Terms`` query (`#1887 <https://github.com/elastic/elasticsearch-dsl-py/pull/1887>`_)
* Added back support for tuples and other iterables to ``Search.source()`` method (`#1895 <https://github.com/elastic/elasticsearch-dsl-py/pull/1895>`_)
* Added recursive option to ``AttrDict.to_dict()`` (`#1892 <https://github.com/elastic/elasticsearch-dsl-py/pull/1892>`_)
* Removed unused analyzer from search as you type example (`#1883 <https://github.com/elastic/elasticsearch-dsl-py/pull/1883>`_)

8.15.1 (2024-08-19)
-------------------

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, 1)
VERSION = (8, 15, 2)
__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, 1)
VERSION = (8, 15, 2)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit 7dc3ec1

Please sign in to comment.