From 92ca4d0cc654859fc2257c492e55d8752370d427 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 8 Oct 2020 13:14:15 +0100 Subject: [PATCH] Version 0.16.1 (#1354) --- CHANGELOG.md | 7 +++++++ httpx/__version__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2cdd83..7751a4fd 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.16.1 (October 8th, 2020) + +### Fixed + +* Support literal IPv6 addresses in URLs. (Pull #1349) +* Force lowercase headers in ASGI scope dictionaries. (Pull #1351) + ## 0.16.0 (October 6th, 2020) ### Changed diff --git a/httpx/__version__.py b/httpx/__version__.py index 80b7eae8..248da917 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.16.0" +__version__ = "0.16.1"