Skip to content

Commit 6aaba44

Browse files
Release 8.17.1 (#1964)
1 parent 9011e0c commit 6aaba44

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: Changelog.rst

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

6+
8.17.1 (2025-01-08)
7+
-------------------
8+
9+
* Added support for the ``point`` and ``shape`` fields (`#1963 <https://github.com/elastic/elasticsearch-dsl-py/pull/1963>`_)
10+
* Corrected typing hints for the ``FunctionScore`` query (`#1960 <https://github.com/elastic/elasticsearch-dsl-py/pull/1960>`_)
11+
612
8.17.0 (2024-12-13)
713
-------------------
814

Diff for: elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
from .utils import AttrDict, AttrList, DslBase
105105
from .wrappers import Range
106106

107-
VERSION = (8, 17, 0)
107+
VERSION = (8, 17, 1)
108108
__version__ = VERSION
109109
__versionstr__ = ".".join(map(str, VERSION))
110110
__all__ = [

Diff for: 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, 17, 0)
22+
VERSION = (8, 17, 1)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)