Skip to content

Commit db4e417

Browse files
Version 0.14.1 (#1164)
1 parent f540bd0 commit db4e417

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## 0.14.1 (August 11th, 2020)
8+
9+
### Added
10+
11+
* The `httpx.URL(...)` class now raises `httpx.InvalidURL` on invalid URLs, rather than exposing the underlying `rfc3986` exception. If a redirect response includes an invalid 'Location' header, then a `RemoteProtocolError` exception is raised, which will be associated with the request that caused it. (Pull #1163)
12+
13+
### Fixed
14+
15+
* Handling multiple `Set-Cookie` headers became broken in the 0.14.0 release, and is now resolved. (Pull #1156)
16+
717
## 0.14.0 (August 7th, 2020)
818

919
The 0.14 release includes a range of improvements to the public API, intended on preparing for our upcoming 1.0 release.

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.14.0"
3+
__version__ = "0.14.1"

0 commit comments

Comments
 (0)