]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.15.4 (#1327) 0.15.4
authorTom Christie <tom@tomchristie.com>
Fri, 25 Sep 2020 11:34:52 +0000 (12:34 +0100)
committerGitHub <noreply@github.com>
Fri, 25 Sep 2020 11:34:52 +0000 (12:34 +0100)
* Version 0.15.4

* Update CHANGELOG

* Update CHANGELOG

* Update CHANGELOG

CHANGELOG.md
httpx/__version__.py

index d2a67e1e031a1cb71c9d43417af04c32f3ed2fd1..9f009bd65eb946fe4fd264181dd956dfde8661d5 100644 (file)
@@ -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=<str>` (Pull #1324)
+
 ## 0.15.3 (September 24th, 2020)
 
 ### Fixed
index 6b163b9b655dbfff360010b15d3e9be8d2e50cb2..83712c2ab1d3d3672bdd88136dede7959a1de318 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.15.3"
+__version__ = "0.15.4"