From e2b8f637c548a0cd26d742304f2e0438b6aa5171 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Wed, 8 Jan 2025 11:49:58 +0000 Subject: [PATCH] Release 8.17.1 --- Changelog.rst | 6 ++++++ elasticsearch_dsl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 36b71a58..1349cf80 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,12 @@ Changelog ========= +8.17.1 (2025-01-08) +------------------- + +* Added support for the ``point`` and ``shape`` fields (`#1963 `_) +* Corrected typing hints for the ``FunctionScore`` query (`#1960 `_) + 8.17.0 (2024-12-13) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index 7c0a37b9..a91e8442 100644 --- a/elasticsearch_dsl/__init__.py +++ b/elasticsearch_dsl/__init__.py @@ -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__ = [ diff --git a/setup.py b/setup.py index cd8934ac..680eb145 100644 --- a/setup.py +++ b/setup.py @@ -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))