Skip to content

Commit b047c0e

Browse files
committed
Bump version to 8.0.0
1 parent 9a19a98 commit b047c0e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Changelog
44
=========
55

6+
8.0.0 (2022-XX-XX)
7+
------------------
8+
9+
* Dropped support for EOL Python 2.7 and 3.5 (`#1606`_, , contributed by `@hugovk`_)
10+
11+
.. _@hugovk: https://github.com/hugovk
12+
.. _#1606: https://github.com/elastic/elasticsearch-dsl-py/pull/1606
13+
614
7.4.0 (2021-07-15)
715
------------------
816

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
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 = (7, 2, 0)
87+
VERSION = (8, 0, 0)
8888
__version__ = VERSION
8989
__versionstr__ = ".".join(map(str, VERSION))
9090
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

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

0 commit comments

Comments
 (0)