Skip to content

Commit 227bfd8

Browse files
committed
Release 7.4.1
1 parent a946dde commit 227bfd8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: Changelog.rst

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

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+
613
7.4.0 (2021-07-15)
714
------------------
815

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 = (7, 4, 0)
87+
VERSION = (7, 4, 1)
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
@@ -20,7 +20,7 @@
2020

2121
from setuptools import find_packages, setup
2222

23-
VERSION = (7, 4, 0)
23+
VERSION = (7, 4, 1)
2424
__version__ = VERSION
2525
__versionstr__ = ".".join(map(str, VERSION))
2626

0 commit comments

Comments
 (0)