Skip to content

Commit 0dd69f8

Browse files
Bring 8.16.0 release to main (#1945)
1 parent 5511abe commit 0dd69f8

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

Changelog.rst

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

6+
8.16.0 (2024-11-13)
7+
-------------------
8+
9+
* Autogenerate parts of the library using documentation and types from the Elasticsearch specification
10+
* query classes (`#1890 <https://github.com/elastic/elasticsearch-dsl-py/pull/1890>`_)
11+
* aggregation classes (`#1918 <https://github.com/elastic/elasticsearch-dsl-py/pull/1918>`_)
12+
* response classes (`#1929 <https://github.com/elastic/elasticsearch-dsl-py/pull/1929>`_ `#1932 <https://github.com/elastic/elasticsearch-dsl-py/pull/1932>`_)
13+
* Support pipe syntax to declare optional document fields (`#1937 <https://github.com/elastic/elasticsearch-dsl-py/pull/1937>`_)
14+
* Ignore document attributes typed with ``ClassVar`` (`#1936 <https://github.com/elastic/elasticsearch-dsl-py/pull/1936>`_)
15+
* Support Python 3.13 (`#1938 <https://github.com/elastic/elasticsearch-dsl-py/pull/1938>`_)
16+
17+
618
8.15.4 (2024-10-07)
719
-------------------
820

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

0 commit comments

Comments
 (0)