diff --git a/CHANGELOG.md b/CHANGELOG.md index 614f0992ff..9230601625 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.2 (5th January, 2022) + +### Fixed + +* HTTP/2 support for tunnelled proxy cases. (#2009) +* Improved the speed of large file uploads. (#1948) + ## 0.21.1 (16th November, 2021) ### Fixed diff --git a/httpx/__version__.py b/httpx/__version__.py index 60943c3c90..4b45451cea 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.1" +__version__ = "0.21.2"