File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.9.0a1 (2023-08-29)
7
+ --------------------
8
+
9
+ * Added Elasticsearch 8.x support (`#1664 `_)
10
+ * Dropped support for Python 2.7 and 3.5 (`#1606 `_, contributed by `@hugovk `_)
11
+ * Added support for Python 3.10 and 3.11 (`#1608 `_, contributed by `@hugovk `_)
12
+ * Added the ``MultiTerms `` aggregation (`#1543 `_, contributed by `@Telomeraz `_)
13
+ * Added the ``CombinedFields `` query (`#1557 `_, contributed by `@Telomeraz `_)
14
+
15
+ .. _@Telomeraz : https://github.com/Telomeraz
16
+ .. _@hugovk : https://github.com/hugovk
17
+ .. _#1664 : https://github.com/elastic/elasticsearch-dsl-py/pull/1664
18
+ .. _#1606 : https://github.com/elastic/elasticsearch-dsl-py/pull/1606
19
+ .. _#1608 : https://github.com/elastic/elasticsearch-dsl-py/pull/1608
20
+ .. _#1543 : https://github.com/elastic/elasticsearch-dsl-py/pull/1543
21
+ .. _#1557 : https://github.com/elastic/elasticsearch-dsl-py/pull/1557
22
+
23
+
6
24
7.4.1 (2023-03-01)
7
25
------------------
8
26
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 , 0 , 0 )
87
+ VERSION = (8 , 9 , 0 , "a1" )
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 , 0 , 0 )
22
+ VERSION = (8 , 9 , 0 , "a1" )
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