]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.11.1 (#773) 0.11.1
authorTom Christie <tom@tomchristie.com>
Fri, 17 Jan 2020 21:31:56 +0000 (21:31 +0000)
committerGitHub <noreply@github.com>
Fri, 17 Jan 2020 21:31:56 +0000 (21:31 +0000)
* Version 0.11.1

* Update changelog

* Update CHANGELOG.md

Co-Authored-By: Florimond Manca <florimond.manca@gmail.com>
Co-authored-by: Florimond Manca <florimond.manca@gmail.com>
CHANGELOG.md
httpx/__version__.py

index e6330305885a41c8cb0e1d4e41880ae435e20983..5d813369ae1e4b7279d7ae5501e0fc1196274040 100644 (file)
@@ -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.
index 769920d70bb63ae57edef6bd93661080df4c50f4..5b763bc32086e87000fb03039f1bac48b8fa37eb 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.11.0"
+__version__ = "0.11.1"