Skip to content

Commit a2945b2

Browse files
Release 8.13.0
1 parent b50d538 commit a2945b2

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
Changelog
44
=========
55

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+
617
8.12.0 (2024-01-18)
718
-------------------
819

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
from .utils import AttrDict, AttrList, DslBase
8787
from .wrappers import Range
8888

89-
VERSION = (8, 12, 0)
89+
VERSION = (8, 13, 0)
9090
__version__ = VERSION
9191
__versionstr__ = ".".join(map(str, VERSION))
9292
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

22-
VERSION = (8, 12, 0)
22+
VERSION = (8, 13, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)