File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.13.0 (2024-04-03)
7
+ -------------------
8
+
9
+ * Added ``asyncio `` support (`#1714 `_)
10
+ * Dropped support for Python 3.7 (`#1717 `_)
11
+ * Stopped mixing body and parameters in ``UpdateByQuery `` (`#1702 `_)
12
+
13
+ .. _#1714 : https://github.com/elastic/elasticsearch-dsl-py/pull/1714
14
+ .. _#1717 : https://github.com/elastic/elasticsearch-dsl-py/pull/1717
15
+ .. _#1702 : https://github.com/elastic/elasticsearch-dsl-py/pull/1702
16
+
6
17
8.12.0 (2024-01-18)
7
18
-------------------
8
19
Original file line number Diff line number Diff line change 86
86
from .utils import AttrDict , AttrList , DslBase
87
87
from .wrappers import Range
88
88
89
- VERSION = (8 , 12 , 0 )
89
+ VERSION = (8 , 13 , 0 )
90
90
__version__ = VERSION
91
91
__versionstr__ = "." .join (map (str , VERSION ))
92
92
__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 , 12 , 0 )
22
+ VERSION = (8 , 13 , 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