From: Tom Christie Date: Tue, 16 Nov 2021 11:51:56 +0000 (+0000) Subject: Version 0.21.1 (#1941) X-Git-Tag: 0.21.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=716749e3fd3c99cb47cc20b96def280dcb3c8d16;p=thirdparty%2Fhttpx.git Version 0.21.1 (#1941) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 095f09d1..045da01c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.21.1 (16th November, 2021) + +### Fixed + +* The `response.url` property is now correctly annotated as `URL`, instead of `Optional[URL]`. (#1940) + ## 0.21.0 (15th November, 2021) The 0.21.0 release integrates against a newly redesigned `httpcore` backend. diff --git a/httpx/__version__.py b/httpx/__version__.py index 94a5a331..60943c3c 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.21.0" +__version__ = "0.21.1"