Skip to content

Commit b317744

Browse files
Release 8.13.0
1 parent 746c186 commit b317744

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: Changelog.rst

+11
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

Diff for: elasticsearch_dsl/__init__.py

+1-1
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__ = [

Diff for: setup.py

+1-1
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)