Skip to content

Commit 0fd63e7

Browse files
authored
Release 8.12.0
1 parent da2f48b commit 0fd63e7

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Changelog.rst

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

6+
8.12.0 (2024-01-18)
7+
-------------------
8+
9+
* Added ``Search.knn()`` method (`#1691`_)
10+
* Added ``Search.rank()`` method (undocumented as it still is in technical preview) (`#1692`_)
11+
* Fixed importing collapse from dictionary (`#1689`_)
12+
13+
.. _#1689: https://github.com/elastic/elasticsearch-dsl-py/pull/1689
14+
.. _#1691: https://github.com/elastic/elasticsearch-dsl-py/pull/1691
15+
.. _#1692: https://github.com/elastic/elasticsearch-dsl-py/pull/1692
16+
617
8.11.0 (2023-11-13)
718
-------------------
819

elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
from .utils import AttrDict, AttrList, DslBase
8585
from .wrappers import Range
8686

87-
VERSION = (8, 11, 0)
87+
VERSION = (8, 12, 0)
8888
__version__ = VERSION
8989
__versionstr__ = ".".join(map(str, VERSION))
9090
__all__ = [

0 commit comments

Comments
 (0)