From 55915dc7d1e238045052bad7b1139274f15e4337 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Tue, 18 Aug 2020 11:39:49 -0500 Subject: [PATCH] Release 7.9.0 --- Changelog.rst | 4 ++-- elasticsearch/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index f5a6f9643..aae72d287 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -7.9.0a1 (2020-07-20) --------------------- +7.9.0 (2020-08-18) +------------------ * Added support for ES 7.9 APIs * Fixed retries to not raise an error when ``sniff_on_connection_error=True`` diff --git a/elasticsearch/__init__.py b/elasticsearch/__init__.py index 02892e3b9..c7d4ba1ee 100644 --- a/elasticsearch/__init__.py +++ b/elasticsearch/__init__.py @@ -20,7 +20,7 @@ VERSION = (7, 9, 0) __version__ = VERSION -__versionstr__ = "7.9.0a1" +__versionstr__ = "7.9.0" import sys import logging diff --git a/setup.py b/setup.py index 2e8b0b8be..faeb47906 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ VERSION = (7, 9, 0) __version__ = VERSION -__versionstr__ = "7.9.0a1" +__versionstr__ = "7.9.0" with open(join(dirname(__file__), "README")) as f: long_description = f.read().strip()