From: Yeray Diaz Diaz Date: Wed, 6 May 2020 14:49:00 +0000 (+0100) Subject: Version 0.13.0.dev1 (#935) X-Git-Tag: 0.13.0.dev1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=560b119d32e9ff222836f3a4e7201c2dde9433f9;p=thirdparty%2Fhttpx.git Version 0.13.0.dev1 (#935) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 81263781..e14f0ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.0.dev1 (May 6th, 2020) + +The 0.13.0.dev1 is a *pre-release* version. To install it, use `pip install httpx --pre`. + +### Fixed + +- Passing `http2` flag to proxy dispatchers. (Pull #934) +- Use [`httpcore` v0.8.3](https://github.com/encode/httpcore/releases/tag/0.8.3) +which addresses problems in handling of headers when using proxies. + ## 0.13.0.dev0 (April 30th, 2020) The 0.13.0.dev0 is a *pre-release* version. To install it, use `pip install httpx --pre`. diff --git a/httpx/__version__.py b/httpx/__version__.py index c2a43c51..7ce88704 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.dev0" +__version__ = "0.13.0.dev1" diff --git a/setup.py b/setup.py index 02191049..554fed60 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( "chardet==3.*", "idna==2.*", "rfc3986>=1.3,<2", - "httpcore>=0.8.1", + "httpcore>=0.8.3", ], classifiers=[ "Development Status :: 4 - Beta",