File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 68
68
" 3.11" ,
69
69
" 3.12" ,
70
70
]
71
- es-version : [8.0.0, 8.9 .0]
71
+ es-version : [8.0.0, 8.11 .0]
72
72
73
73
steps :
74
74
- name : Checkout Repository
Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
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
+
6
16
8.9.0 (2023-09-07)
7
17
------------------
8
18
Original file line number Diff line number Diff line change 84
84
from .utils import AttrDict , AttrList , DslBase
85
85
from .wrappers import Range
86
86
87
- VERSION = (8 , 9 , 0 )
87
+ VERSION = (8 , 11 , 0 )
88
88
__version__ = VERSION
89
89
__versionstr__ = "." .join (map (str , VERSION ))
90
90
__all__ = [
Original file line number Diff line number Diff line change 19
19
20
20
from setuptools import find_packages , setup
21
21
22
- VERSION = (8 , 9 , 0 )
22
+ VERSION = (8 , 11 , 0 )
23
23
__version__ = VERSION
24
24
__versionstr__ = "." .join (map (str , VERSION ))
25
25
You can’t perform that action at this time.
0 commit comments