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,20 @@ 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.dev2 (May 12th, 2020)
8+
9+ The 0.13.0.dev2 is a * pre-release* version. To install it, use ` pip install httpx --pre ` .
10+
11+ ### Added
12+
13+ - Logging via HTTPCORE_LOG_LEVEL and HTTPX_LOG_LEVEL environment variables
14+ and TRACE level logging. (HTTPCore Pull #79 )
15+
16+ ### Fixed
17+
18+ - Reuse of connections on HTTP/2 in close concurrency situations. (HTTPCore Pull #81 )
19+ - When using an ` app=<ASGI app> ` observe neater disconnect behaviour instead of sending empty body messages. (Pull #919 )
20+
721## 0.13.0.dev1 (May 6th, 2020)
822
923The 0.13.0.dev1 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.0.dev1 "
3+ __version__ = "0.13.0.dev2 "
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ def get_packages(package):
5757 install_requires = [
5858 "certifi" ,
5959 "hstspreload" ,
60+ "sniffio" ,
6061 "chardet==3.*" ,
6162 "idna==2.*" ,
6263 "rfc3986>=1.3,<2" ,
63- "httpcore>=0.8.3" ,
64- "sniffio" ,
64+ "httpcore>=0.8.4" ,
6565 ],
6666 classifiers = [
6767 "Development Status :: 4 - Beta" ,
You can’t perform that action at this time.
0 commit comments