Skip to content

Commit

Permalink
Release 8.17.1 (#1964)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg authored Jan 8, 2025
1 parent 9011e0c commit 6aaba44
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.17.1 (2025-01-08)
-------------------

* Added support for the ``point`` and ``shape`` fields (`#1963 <https://github.com/elastic/elasticsearch-dsl-py/pull/1963>`_)
* Corrected typing hints for the ``FunctionScore`` query (`#1960 <https://github.com/elastic/elasticsearch-dsl-py/pull/1960>`_)

8.17.0 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
from .utils import AttrDict, AttrList, DslBase
from .wrappers import Range

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

Expand Down

0 comments on commit 6aaba44

Please sign in to comment.