Skip to content

Commit 0ed651a

Browse files
committed
Release 7.9.1
1 parent 3d84d2f commit 0ed651a

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

Changelog.rst

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

6+
7.9.1 (2020-08-19)
7+
------------------
8+
9+
* Fixed the import of async helpers which were not available in 7.9.0 (`#1353`_).
10+
* Added support for ``url_prefix`` when using ``AIOHttpConnection`` (`#1357`_)
11+
12+
.. _#1353: https://github.com/elastic/elasticsearch-py/pull/1353
13+
.. _#1357: https://github.com/elastic/elasticsearch-py/pull/1357
14+
615
7.9.0 (2020-08-18)
716
------------------
817

elasticsearch/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
# flake8: noqa
1919
from __future__ import absolute_import
2020

21-
VERSION = (7, 9, 0)
21+
VERSION = (7, 9, 1)
2222
__version__ = VERSION
23-
__versionstr__ = "7.9.0"
23+
__versionstr__ = "7.9.1"
2424

2525
import sys
2626
import logging

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
from os.path import join, dirname
2020
from setuptools import setup, find_packages
2121

22-
VERSION = (7, 9, 0)
22+
VERSION = (7, 9, 1)
2323
__version__ = VERSION
24-
__versionstr__ = "7.9.0"
24+
__versionstr__ = "7.9.1"
2525

2626
with open(join(dirname(__file__), "README")) as f:
2727
long_description = f.read().strip()

0 commit comments

Comments
 (0)