Skip to content

Commit

Permalink
Release 8.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Sep 7, 2023
1 parent 9c9eee6 commit ec99c85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Changelog.rst
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

8.9.0a1 (2023-08-29)
--------------------
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`_)
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/__init__.py
Expand Up @@ -84,7 +84,7 @@
from .utils import AttrDict, AttrList, DslBase
from .wrappers import Range

VERSION = (8, 9, 0, "a1")
VERSION = (8, 9, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@

from setuptools import find_packages, setup

VERSION = (8, 9, 0, "a1")
VERSION = (8, 9, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down

0 comments on commit ec99c85

Please sign in to comment.