From: Tom Christie Date: Fri, 25 Sep 2020 11:34:52 +0000 (+0100) Subject: Version 0.15.4 (#1327) X-Git-Tag: 0.15.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7a76fbb12479fa82e718322e43fc511dec0eb21;p=thirdparty%2Fhttpx.git Version 0.15.4 (#1327) * Version 0.15.4 * Update CHANGELOG * Update CHANGELOG * Update CHANGELOG --- diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a67e1e..9f009bd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.15.4 (September 25th, 2020) + +### Added + +* Support direct comparisons between `Headers` and dicts or lists of two-tuples. Eg. `assert response.headers == {"Content-Length": 24}` (Pull #1326) + +### Fixed + +* Fix automatic `.read()` when `Response` instances are created with `content=` (Pull #1324) + ## 0.15.3 (September 24th, 2020) ### Fixed diff --git a/httpx/__version__.py b/httpx/__version__.py index 6b163b9b..83712c2a 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.15.3" +__version__ = "0.15.4"