Skip to content

Commit

Permalink
Bring 8.15.0 release to main (#1875)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Aug 12, 2024
1 parent d81786c commit 6bd7aa3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Changelog
=========

8.15.0 (2024-08-09)
-------------------

* Added the option to use Python types to declare document fields (`#1845 <https://github.com/elastic/elasticsearch-dsl-py/pull/1845>`_)
* Added type annotations (`#1533 <https://github.com/elastic/elasticsearch-dsl-py/pull/1533>`_)
* Added support for bulk document operations with ``Document.bulk()`` (`#1864 <https://github.com/elastic/elasticsearch-dsl-py/pull/1864>`_)
* Added the ``ConstantKeyword`` field to the top-level package (`#1843 <https://github.com/elastic/elasticsearch-dsl-py/pull/1843>`_)
* Added ``async_connections`` to the top-level package (`#1865 <https://github.com/elastic/elasticsearch-dsl-py/pull/1865>`_)
* Added index creation to the aggregations example (`#1862 <https://github.com/elastic/elasticsearch-dsl-py/pull/1862>`_)

8.14.0 (2024-06-10)
-------------------

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

Expand Down

0 comments on commit 6bd7aa3

Please sign in to comment.