File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7+ ## 0.13.0.dev1 (May 6th, 2020)
8+
9+ The 0.13.0.dev1 is a * pre-release* version. To install it, use ` pip install httpx --pre ` .
10+
11+ ### Fixed
12+
13+ - Passing ` http2 ` flag to proxy dispatchers. (Pull #934 )
14+ - Use [ ` httpcore ` v0.8.3] ( https://github.com/encode/httpcore/releases/tag/0.8.3 )
15+ which addresses problems in handling of headers when using proxies.
16+
717## 0.13.0.dev0 (April 30th, 2020)
818
919The 0.13.0.dev0 is a * pre-release* version. To install it, use ` pip install httpx --pre ` .
Original file line number Diff line number Diff line change 11__title__ = "httpx"
22__description__ = "A next generation HTTP client, for Python 3."
3- __version__ = "0.13.dev0 "
3+ __version__ = "0.13.0.dev1 "
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def get_packages(package):
6060 "chardet==3.*" ,
6161 "idna==2.*" ,
6262 "rfc3986>=1.3,<2" ,
63- "httpcore>=0.8.1 " ,
63+ "httpcore>=0.8.3 " ,
6464 ],
6565 classifiers = [
6666 "Development Status :: 4 - Beta" ,
You can’t perform that action at this time.
0 commit comments