From: Tom Christie Date: Wed, 27 May 2020 14:58:41 +0000 (+0100) Subject: Version 0.13.2 (#1001) X-Git-Tag: 0.13.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5e1aa5517e35afb40000d4a540569f737baea6e;p=thirdparty%2Fhttpx.git Version 0.13.2 (#1001) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index c697d055..f7759bc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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.13.2 (May 27th, 2020) + +### Fixed + +* Include explicit "Content-Length: 0" on POST, PUT, PATCH if no request body is used. (Pull #995) +* Add `http2` option to `httpx.Client`. (Pull #982) +* Tighten up API typing in places. (Pull #992, #999) + ## 0.13.1 (May 22nd, 2020) ### Fixed diff --git a/httpx/__version__.py b/httpx/__version__.py index d18f33ad..e59a0f26 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.13.1" +__version__ = "0.13.2"