From: Florimond Manca Date: Thu, 24 Sep 2020 09:39:02 +0000 (+0200) Subject: Release 0.15.3 (#1318) X-Git-Tag: 0.15.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24da8d40ff126c903d78547a5e045306ab620374;p=thirdparty%2Fhttpx.git Release 0.15.3 (#1318) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 663b9909..d2a67e1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.15.3 (September 24th, 2020) + +### Fixed + +* Fixed connection leak in async client due to improper closing of response streams. (Pull #1316) + ## 0.15.2 (September 23nd, 2020) ### Fixed diff --git a/httpx/__version__.py b/httpx/__version__.py index 8a93b253..6b163b9b 100644 --- a/httpx/__version__.py +++ b/httpx/__version__.py @@ -1,3 +1,3 @@ __title__ = "httpx" __description__ = "A next generation HTTP client, for Python 3." -__version__ = "0.15.2" +__version__ = "0.15.3"