Version 0.15.4 (#1327)

* Version 0.15.4

* Update CHANGELOG

* Update CHANGELOG

* Update CHANGELOG
This commit is contained in:
Tom Christie 2020-09-25 12:34:52 +01:00 committed by GitHub
parent 815ef94ed9
commit a7a76fbb12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View 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

View File

@ -1,3 +1,3 @@
__title__ = "httpx"
__description__ = "A next generation HTTP client, for Python 3."
__version__ = "0.15.3"
__version__ = "0.15.4"