From: Tom Christie Date: Wed, 2 Sep 2020 11:17:23 +0000 (+0100) Subject: Version 0.14.3 (#1247) X-Git-Tag: 0.14.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec06ba244e0a59e3152491c7899713222ebd7ac6;p=thirdparty%2Fhttpx.git Version 0.14.3 (#1247) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index d61d33ea..8bc3579a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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.14.3 (September 2nd, 2020) + +### Added + +* `http.Response()` may now be instantiated without a `request=...` parameter. Useful for some unit testing cases. (Pull #1238) +* Add `103 Early Hints` and `425 Too Early` status codes. (Pull #1244) + +### Fixed + +* `DigestAuth` now handles responses that include multiple 'WWW-Authenticate' headers. (Pull #1240) +* Call into transport `__enter__`/`__exit__` or `__aenter__`/`__aexit__` when client is used in a context manager style. (Pull #1218) + ## 0.14.2 (August 24th, 2020) ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index 561d74af..aff7043e 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.14.2" +__version__ = "0.14.3"