From a29ef3949eee53ab6fc086c46605b6422a10defe Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Wed, 28 Aug 2019 13:56:32 -0500 Subject: [PATCH 1/2] Release 0.7.2 --- CHANGELOG.md | 11 +++++++++++ httpx/__version__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1cc654e05..a46fdeed48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.7.2 (August 28, 2019) + +- Enforce using `httpx.AsyncioBackend` for the synchronous client. (Pull #232) +- `httpx.ConnectionPool` will properly release a dropped connection. (Pull #230) +- Remove the `raise_app_exceptions` argument from `Client`. (Pull #238) +- `DecodeError` will no longer be raised for an empty body encoded with Brotli. (Pull #237) +- Added `http_versions` parameter to `Client`. (Pull #250) +- Only use HTTP/1.1 on short-lived connections like `httpx.get()`. (Pull #284) +- Convert `Client.cookies` and `Client.headers` when set as a property. (Pull #274) +- Setting `HTTPX_DEBUG=1` enabled debug logging on all requests. (Pull #277) + ## 0.7.1 (August 18, 2019) - Include files with source distribution to be installable. (Pull #233) diff --git a/httpx/__version__.py b/httpx/__version__.py index aea9e4d99f..828950829d 100644 --- a/httpx/__version__.py +++ b/httpx/__version__.py @@ -1,3 +1,3 @@ __title__ = "httpx" __description__ = "A next generation HTTP client, for Python 3." -__version__ = "0.7.1" +__version__ = "0.7.2" diff --git a/setup.py b/setup.py index e0b42e770f..ad27702bb2 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def get_packages(package): "chardet==3.*", "h11==0.8.*", "h2==3.*", - "hstspreload", + "hstspreload>=2019.8.27", "idna==2.*", "rfc3986==1.*", ], From efa2d638a5fe91befc0c780350a4f253097bae07 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Thu, 29 Aug 2019 07:18:24 -0500 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a46fdeed48..b3b756241f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ - Added `http_versions` parameter to `Client`. (Pull #250) - Only use HTTP/1.1 on short-lived connections like `httpx.get()`. (Pull #284) - Convert `Client.cookies` and `Client.headers` when set as a property. (Pull #274) -- Setting `HTTPX_DEBUG=1` enabled debug logging on all requests. (Pull #277) +- Setting `HTTPX_DEBUG=1` enables debug logging on all requests. (Pull #277) ## 0.7.1 (August 18, 2019)