Skip to content

Commit ecf2e15

Browse files
authored
Release 8.11.0
1 parent 333aa5a commit ecf2e15

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
"3.11",
6969
"3.12",
7070
]
71-
es-version: [8.0.0, 8.9.0]
71+
es-version: [8.0.0, 8.11.0]
7272

7373
steps:
7474
- name: Checkout Repository

Diff for: Changelog.rst

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

6+
8.11.0 (2023-11-13)
7+
-------------------
8+
9+
* Added support for Python 3.12 (`#1680`_)
10+
* Added support for Search.collase() (`#1649`_, contributed by `@qcoumes`_)
11+
12+
.. _@qcoumes: https://github.com/qcoumes
13+
.. _#1680: https://github.com/elastic/elasticsearch-dsl-py/pull/1680
14+
.. _#1649: https://github.com/elastic/elasticsearch-dsl-py/pull/1649
15+
616
8.9.0 (2023-09-07)
717
------------------
818

Diff for: 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, 9, 0)
87+
VERSION = (8, 11, 0)
8888
__version__ = VERSION
8989
__versionstr__ = ".".join(map(str, VERSION))
9090
__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, 9, 0)
22+
VERSION = (8, 11, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)