Skip to content

Commit 146ffe9

Browse files
Release 8.17.0
1 parent ea260bd commit 146ffe9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Changelog
44
=========
55

6+
8.17.0 (2024-12-13)
7+
-------------------
8+
9+
* Added support for quantized dense vector options (`#1948 <https://github.com/elastic/elasticsearch-dsl-py/pull/1948>`_)
10+
* Added support for composable index templates (`#1943 <https://github.com/elastic/elasticsearch-dsl-py/pull/1943>`_)
11+
612
8.16.0 (2024-11-13)
713
-------------------
814

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
from .utils import AttrDict, AttrList, DslBase
103103
from .wrappers import Range
104104

105-
VERSION = (8, 16, 0)
105+
VERSION = (8, 17, 0)
106106
__version__ = VERSION
107107
__versionstr__ = ".".join(map(str, VERSION))
108108
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

22-
VERSION = (8, 16, 0)
22+
VERSION = (8, 17, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)