From: Tom Christie Date: Wed, 23 Sep 2020 10:28:22 +0000 (+0100) Subject: Version 0.15.2 (#1314) X-Git-Tag: 0.15.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ceb34f48672f89de2458df371e2624659e2c24f;p=thirdparty%2Fhttpx.git Version 0.15.2 (#1314) * Fix response.elapsed * Version 0.15.2 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 0da2047f..663b9909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.2 (September 23nd, 2020) + +### Fixed + +* Fixed `response.elapsed` property. (Pull #1313) +* Fixed client authentication interaction with `.stream()`. (Pull #1312) + ## 0.15.1 (September 23nd, 2020) ### Fixed diff --git a/httpx/__version__.py b/httpx/__version__.py index fa6553d9..8a93b253 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.1" +__version__ = "0.15.2"