Skip to content

Commit

Permalink
Release 8.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 13, 2024
1 parent d2bb988 commit 2659478
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
=========

8.16.0 (2024-11-13)
-------------------

* Support pipe syntax to declare optional document fields (`#1937 <https://github.com/elastic/elasticsearch-dsl-py/pull/1937>`_)
* Autogenerate query classes with docstrings and type hints (`#1890 <https://github.com/elastic/elasticsearch-dsl-py/pull/1890>`_)
* Autogenerate aggregation classes with docstrings and type hints (`#1918 <https://github.com/elastic/elasticsearch-dsl-py/pull/1918>`_)
* Autogenerate Elasticsearch response classes with docstrings and type hints (`#1929 <https://github.com/elastic/elasticsearch-dsl-py/pull/1929>`_ `#1932 <https://github.com/elastic/elasticsearch-dsl-py/pull/1932>`_)
* Ignore document attributes typed with ``ClassVar`` (`#1936 <https://github.com/elastic/elasticsearch-dsl-py/pull/1936>`_)
* Support Python 3.13 (`#1938 <https://github.com/elastic/elasticsearch-dsl-py/pull/1938>`_)


8.15.4 (2024-10-07)
-------------------

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, 4)
VERSION = (8, 16, 0)
__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, 4)
VERSION = (8, 16, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit 2659478

Please sign in to comment.