Skip to content

Commit ec99c85

Browse files
authored
Release 8.9.0
1 parent 9c9eee6 commit ec99c85

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Changelog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
8.9.0a1 (2023-08-29)
7-
--------------------
6+
8.9.0 (2023-09-07)
7+
------------------
88

99
* Added Elasticsearch 8.x support (`#1664`_)
1010
* Dropped support for Python 2.7 and 3.5 (`#1606`_, contributed by `@hugovk`_)

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, 9, 0, "a1")
87+
VERSION = (8, 9, 0)
8888
__version__ = VERSION
8989
__versionstr__ = ".".join(map(str, VERSION))
9090
__all__ = [

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, 9, 0, "a1")
22+
VERSION = (8, 9, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)