File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 7.4.1 (2023-03-01)
7
+ ------------------
8
+
9
+ * Fixed ``DeprecationWarnings `` that would be emitted from deprecated
10
+ usages of the ``body `` parameter in the Python Elasticsearch client.
11
+
12
+
6
13
7.4.0 (2021-07-15)
7
14
------------------
8
15
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 = (7 , 4 , 0 )
87
+ VERSION = (7 , 4 , 1 )
88
88
__version__ = VERSION
89
89
__versionstr__ = "." .join (map (str , VERSION ))
90
90
__all__ = [
Original file line number Diff line number Diff line change 20
20
21
21
from setuptools import find_packages , setup
22
22
23
- VERSION = (7 , 4 , 0 )
23
+ VERSION = (7 , 4 , 1 )
24
24
__version__ = VERSION
25
25
__versionstr__ = "." .join (map (str , VERSION ))
26
26
You can’t perform that action at this time.
0 commit comments