From: Tom Christie Date: Wed, 23 Sep 2020 09:12:50 +0000 (+0100) Subject: Version 0.15.1 (#1308) X-Git-Tag: 0.15.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27e67b32e940429f04f37ddd5be8b7a4fe4fbb19;p=thirdparty%2Fhttpx.git Version 0.15.1 (#1308) * Update CHANGELOG.md * Update __version__.py --- diff --git a/CHANGELOG.md b/CHANGELOG.md index bed81c34..0da2047f 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.15.1 (September 23nd, 2020) + +### Fixed + +* ASGITransport now properly applies URL decoding to the `path` component, as-per the ASGI spec. (Pull #1307) + ## 0.15.0 (September 22nd, 2020) ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index 117eed36..fa6553d9 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.15.0" +__version__ = "0.15.1"