Skip to content

Commit 3f072c3

Browse files
Release 8.15.3 (#1911)
* Release 8.15.3 * updated change log with one more fix
1 parent de9ce6a commit 3f072c3

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Changelog.rst

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

6+
8.15.3 (2024-09-12)
7+
-------------------
8+
9+
* Fixed regression introduced in ``Terms`` query class (`#1907 <https://github.com/elastic/elasticsearch-dsl-py/pull/1907>`_)
10+
* Removed unnecessary ``filter`` argument in ``AggBase.__getitem__`` (`#1903 <https://github.com/elastic/elasticsearch-dsl-py/pull/1903>`_)
11+
* Fixed deserialization of ``datetime.date`` fields (`#1914 <https://github.com/elastic/elasticsearch-dsl-py/pull/1914>`_)
12+
613
8.15.2 (2024-09-04)
714
-------------------
815

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, 2)
98+
VERSION = (8, 15, 3)
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, 2)
22+
VERSION = (8, 15, 3)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)