File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 33Changelog
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+
6157.9.0 (2020-08-18)
716------------------
817
Original file line number Diff line number Diff line change 1818# flake8: noqa
1919from __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
2525import sys
2626import logging
Original file line number Diff line number Diff line change 1919from os .path import join , dirname
2020from 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
2626with open (join (dirname (__file__ ), "README" )) as f :
2727 long_description = f .read ().strip ()
You can’t perform that action at this time.
0 commit comments