From: Tom Christie Date: Fri, 17 Jan 2020 21:31:56 +0000 (+0000) Subject: Version 0.11.1 (#773) X-Git-Tag: 0.11.1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b128bfaf211314dfb9b0a19ab6e00cfbe98522b8;p=thirdparty%2Fhttpx.git Version 0.11.1 (#773) * Version 0.11.1 * Update changelog * Update CHANGELOG.md Co-Authored-By: Florimond Manca Co-authored-by: Florimond Manca --- diff --git a/CHANGELOG.md b/CHANGELOG.md index e6330305..5d813369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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.11.1 (January 17th, 2020) + +### Fixed + +* Fixed usage of `proxies=...` on `Client()`. (Pull #763) +* Support both `zlib` and `deflate` style encodings on `Content-Encoding: deflate`. (Pull #758) +* Fix for streaming a redirect response body with `allow_redirects=False`. (Pull #766) +* Handle redirect with malformed Location headers missing host. (Pull #774) + ## 0.11.0 (January 9th, 2020) The 0.11 release reintroduces our sync support, so that `httpx` now supports both a standard thread-concurrency API, and an async API. diff --git a/httpx/__version__.py b/httpx/__version__.py index 769920d7..5b763bc3 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.11.0" +__version__ = "0.11.1"