Skip to content

Commit

Permalink
Release 8.15.1 (#1884)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg authored Aug 19, 2024
1 parent 4e0bce9 commit 575406a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Changelog
=========

8.15.1 (2024-08-19)
-------------------

* Added support for the ``semantic_text`` field and ``semantic`` query type (`#1881 <https://github.com/elastic/elasticsearch-dsl-py/pull/1881>`_)
* Removed extra ``__orig_class__`` attribute in aggregation responses (`#1877 <https://github.com/elastic/elasticsearch-dsl-py/pull/1877>`_)

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

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

Expand Down

0 comments on commit 575406a

Please sign in to comment.