Skip to content

Commit 560b119

Browse files
author
Yeray Diaz Diaz
authored
Version 0.13.0.dev1 (#935)
1 parent 4af3dd7 commit 560b119

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
The 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

919
The 0.13.0.dev0 is a *pre-release* version. To install it, use `pip install httpx --pre`.

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.13.dev0"
3+
__version__ = "0.13.0.dev1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)