Skip to content

Commit

Permalink
Release 8.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Apr 3, 2024
1 parent b50d538 commit a2945b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
=========

8.13.0 (2024-04-03)
-------------------

* Added ``asyncio`` support (`#1714`_)
* Dropped support for Python 3.7 (`#1717`_)
* Stopped mixing body and parameters in ``UpdateByQuery`` (`#1702`_)

.. _#1714: https://github.com/elastic/elasticsearch-dsl-py/pull/1714
.. _#1717: https://github.com/elastic/elasticsearch-dsl-py/pull/1717
.. _#1702: https://github.com/elastic/elasticsearch-dsl-py/pull/1702

8.12.0 (2024-01-18)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
from .utils import AttrDict, AttrList, DslBase
from .wrappers import Range

VERSION = (8, 12, 0)
VERSION = (8, 13, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from setuptools import find_packages, setup

VERSION = (8, 12, 0)
VERSION = (8, 13, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit a2945b2

Please sign in to comment.