Skip to content

Commit 6290e91

Browse files
authored
Release 8.9.0a1
1 parent 56832d8 commit 6290e91

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Diff for: Changelog.rst

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

6+
8.9.0a1 (2023-08-29)
7+
--------------------
8+
9+
* Added Elasticsearch 8.x support (`#1664`_)
10+
* Dropped support for Python 2.7 and 3.5 (`#1606`_, contributed by `@hugovk`_)
11+
* Added support for Python 3.10 and 3.11 (`#1608`_, contributed by `@hugovk`_)
12+
* Added the ``MultiTerms`` aggregation (`#1543`_, contributed by `@Telomeraz`_)
13+
* Added the ``CombinedFields`` query (`#1557`_, contributed by `@Telomeraz`_)
14+
15+
.. _@Telomeraz: https://github.com/Telomeraz
16+
.. _@hugovk: https://github.com/hugovk
17+
.. _#1664: https://github.com/elastic/elasticsearch-dsl-py/pull/1664
18+
.. _#1606: https://github.com/elastic/elasticsearch-dsl-py/pull/1606
19+
.. _#1608: https://github.com/elastic/elasticsearch-dsl-py/pull/1608
20+
.. _#1543: https://github.com/elastic/elasticsearch-dsl-py/pull/1543
21+
.. _#1557: https://github.com/elastic/elasticsearch-dsl-py/pull/1557
22+
23+
624
7.4.1 (2023-03-01)
725
------------------
826

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 = (8, 0, 0)
87+
VERSION = (8, 9, 0, "a1")
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
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

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

0 commit comments

Comments
 (0)