Skip to content

Commit 6ab664d

Browse files
committed
Bring 8.12.0 release notes to main
1 parent 5422cf0 commit 6ab664d

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
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__ = [

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, 11, 0)
22+
VERSION = (8, 12, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)