Skip to content

Commit

Permalink
Add 8.9.0 release to changelog on main (#1671)
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Sep 8, 2023
1 parent 47a5d72 commit bde8e10
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
Changelog
=========

8.9.0 (2023-09-07)
------------------

* Added Elasticsearch 8.x support (`#1664`_)
* Dropped support for Python 2.7 and 3.5 (`#1606`_, contributed by `@hugovk`_)
* Added support for Python 3.10 and 3.11 (`#1608`_, contributed by `@hugovk`_)
* Added the ``MultiTerms`` aggregation (`#1543`_, contributed by `@Telomeraz`_)
* Added the ``CombinedFields`` query (`#1557`_, contributed by `@Telomeraz`_)

.. _@Telomeraz: https://github.com/Telomeraz
.. _@hugovk: https://github.com/hugovk
.. _#1664: https://github.com/elastic/elasticsearch-dsl-py/pull/1664
.. _#1606: https://github.com/elastic/elasticsearch-dsl-py/pull/1606
.. _#1608: https://github.com/elastic/elasticsearch-dsl-py/pull/1608
.. _#1543: https://github.com/elastic/elasticsearch-dsl-py/pull/1543
.. _#1557: https://github.com/elastic/elasticsearch-dsl-py/pull/1557


7.4.1 (2023-03-01)
------------------

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

VERSION = (8, 0, 0)
VERSION = (8, 9, 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, 0, 0)
VERSION = (8, 9, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit bde8e10

Please sign in to comment.