Skip to content

Commit 8c456e4

Browse files
authored
Release 0.7.2 (#291)
1 parent 9e420a5 commit 8c456e4

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 0.7.2 (August 28, 2019)
4+
5+
- Enforce using `httpx.AsyncioBackend` for the synchronous client. (Pull #232)
6+
- `httpx.ConnectionPool` will properly release a dropped connection. (Pull #230)
7+
- Remove the `raise_app_exceptions` argument from `Client`. (Pull #238)
8+
- `DecodeError` will no longer be raised for an empty body encoded with Brotli. (Pull #237)
9+
- Added `http_versions` parameter to `Client`. (Pull #250)
10+
- Only use HTTP/1.1 on short-lived connections like `httpx.get()`. (Pull #284)
11+
- Convert `Client.cookies` and `Client.headers` when set as a property. (Pull #274)
12+
- Setting `HTTPX_DEBUG=1` enables debug logging on all requests. (Pull #277)
13+
314
## 0.7.1 (August 18, 2019)
415

516
- Include files with source distribution to be installable. (Pull #233)

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.7.1"
3+
__version__ = "0.7.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_packages(package):
5454
"chardet==3.*",
5555
"h11==0.8.*",
5656
"h2==3.*",
57-
"hstspreload",
57+
"hstspreload>=2019.8.27",
5858
"idna==2.*",
5959
"rfc3986==1.*",
6060
],

0 commit comments

Comments
 (0)