]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.18.1 (#1617) 0.18.1
authorTom Christie <tom@tomchristie.com>
Thu, 29 Apr 2021 12:57:12 +0000 (13:57 +0100)
committerGitHub <noreply@github.com>
Thu, 29 Apr 2021 12:57:12 +0000 (13:57 +0100)
* Version 0.18.1

* Update CHANGELOG.md

CHANGELOG.md
httpx/__version__.py

index 46384c596388e48dca4ce344477afbc53e51d06a..e5116cca10ce55015007d32bacbf515496f12937 100644 (file)
@@ -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`.
index b847686501740ec18ff4e3e086d087fa1b628605..c2cbcb425a08c27291bc715aff80e53fb72d1748 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.18.0"
+__version__ = "0.18.1"