From: Tom Christie Date: Thu, 29 Apr 2021 12:57:12 +0000 (+0100) Subject: Version 0.18.1 (#1617) X-Git-Tag: 0.18.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54f4194c387e1817f958ba8c25710d551cec278a;p=thirdparty%2Fhttpx.git Version 0.18.1 (#1617) * Version 0.18.1 * Update CHANGELOG.md --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 46384c59..e5116cca 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.18.1 (29th April, 2021) + +### Changed + +* Update brotli support to use the `brotlicffi` package (Pull #1605) +* Ensure that `Request(..., stream=...)` does not auto-generate any headers on the request instance. (Pull #1607) + +### Fixed + +* Pass through `timeout=...` in top-level httpx.stream() function. (Pull #1613) +* Map httpcore transport close exceptions to httpx exceptions. (Pull #1606) + ## 0.18.0 (27th April, 2021) The 0.18.x release series formalises our low-level Transport API, introducing the base classes `httpx.BaseTransport` and `httpx.AsyncBaseTransport`. diff --git a/httpx/__version__.py b/httpx/__version__.py index b8476865..c2cbcb42 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.18.0" +__version__ = "0.18.1"