Skip to content

Commit aa434c9

Browse files
Bring 8.15.1 release to main (#1885)
1 parent 7fa4f8c commit aa434c9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.rst

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

6+
8.15.1 (2024-08-19)
7+
-------------------
8+
9+
* Added support for the ``semantic_text`` field and ``semantic`` query type (`#1881 <https://github.com/elastic/elasticsearch-dsl-py/pull/1881>`_)
10+
* Removed extra ``__orig_class__`` attribute in aggregation responses (`#1877 <https://github.com/elastic/elasticsearch-dsl-py/pull/1877>`_)
11+
612
8.15.0 (2024-08-09)
713
-------------------
814

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

0 commit comments

Comments
 (0)