]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Version 0.13.0.dev1 (#935) 0.13.0.dev1
authorYeray Diaz Diaz <yeraydiazdiaz@gmail.com>
Wed, 6 May 2020 14:49:00 +0000 (15:49 +0100)
committerGitHub <noreply@github.com>
Wed, 6 May 2020 14:49:00 +0000 (15:49 +0100)
CHANGELOG.md
httpx/__version__.py
setup.py

index 81263781b0864948cedf2f461c88c079220bb775..e14f0ad473972469f49f4782fec862e82c7e74f6 100644 (file)
@@ -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`.
index c2a43c517ad848ca3f958c7ff2dfa3ff8a057909..7ce887045065ddd069696bf8e2aab731e6a3bdad 100644 (file)
@@ -1,3 +1,3 @@
 __title__ = "httpx"
 __description__ = "A next generation HTTP client, for Python 3."
-__version__ = "0.13.dev0"
+__version__ = "0.13.0.dev1"
index 02191049f868f26f0d8a30db8d087bee87761246..554fed604c4fbee4b9ed88235fa0277341c272a1 100644 (file)
--- 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",