]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.13.0.dev2 (#941) 0.13.0.dev2
authorTom Christie <tom@tomchristie.com>
Tue, 12 May 2020 09:20:22 +0000 (10:20 +0100)
committerGitHub <noreply@github.com>
Tue, 12 May 2020 09:20:22 +0000 (10:20 +0100)
* Update __version__.py

* Update CHANGELOG.md

* Update setup.py

* Update CHANGELOG.md

CHANGELOG.md
httpx/__version__.py
setup.py

index e14f0ad473972469f49f4782fec862e82c7e74f6..e19b2a17070994296608ba8fc6f6d46314c4e2da 100644 (file)
@@ -4,6 +4,20 @@ 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.dev2 (May 12th, 2020)
+
+The 0.13.0.dev2 is a *pre-release* version. To install it, use `pip install httpx --pre`.
+
+### Added
+
+- Logging via HTTPCORE_LOG_LEVEL and HTTPX_LOG_LEVEL environment variables
+and TRACE level logging. (HTTPCore Pull #79)
+
+### Fixed
+
+- Reuse of connections on HTTP/2 in close concurrency situations. (HTTPCore Pull #81)
+- When using an `app=<ASGI app>` observe neater disconnect behaviour instead of sending empty body messages. (Pull #919)
+
 ## 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`.
index 7ce887045065ddd069696bf8e2aab731e6a3bdad..ad8d4bf88e36cddfb6705db7cb8ab2bae0aee614 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.13.0.dev1"
+__version__ = "0.13.0.dev2"
index 6a5b137eda5b8eb709cc2dfdd7d7dd8782bc2bd1..4fe7e1bed277343aaa69719637b2eff501ebfb0d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -57,11 +57,11 @@ setup(
     install_requires=[
         "certifi",
         "hstspreload",
+        "sniffio",
         "chardet==3.*",
         "idna==2.*",
         "rfc3986>=1.3,<2",
-        "httpcore>=0.8.3",
-        "sniffio",
+        "httpcore>=0.8.4",
     ],
     classifiers=[
         "Development Status :: 4 - Beta",