Skip to content

Commit

Permalink
Release 8.15.3 (#1911)
Browse files Browse the repository at this point in the history
* Release 8.15.3

* updated change log with one more fix
  • Loading branch information
miguelgrinberg authored Sep 13, 2024
1 parent de9ce6a commit 3f072c3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Changelog
=========

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

* Fixed regression introduced in ``Terms`` query class (`#1907 <https://github.com/elastic/elasticsearch-dsl-py/pull/1907>`_)
* Removed unnecessary ``filter`` argument in ``AggBase.__getitem__`` (`#1903 <https://github.com/elastic/elasticsearch-dsl-py/pull/1903>`_)
* Fixed deserialization of ``datetime.date`` fields (`#1914 <https://github.com/elastic/elasticsearch-dsl-py/pull/1914>`_)

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

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

Expand Down

0 comments on commit 3f072c3

Please sign in to comment.