From: Florimond Manca Date: Sat, 2 Nov 2019 11:09:26 +0000 (+0100) Subject: Release 0.7.6 (#499) X-Git-Tag: 0.7.6^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a62947826fa337e6e8176aae27ec627a9def25af;p=thirdparty%2Fhttpx.git Release 0.7.6 (#499) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index b051badf..1cea6545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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.7.6 (November 2, 2019) + +### Removed + +- Drop `proxies` parameter from the high-level API. (Pull #485) + +### Fixed + +- Tweak multipart files: omit null filenames, add support for `str` file contents. (Pull #482) +- Cache NETRC authentication per-client. (Pull #400) +- Rely on `getproxies` for all proxy environment variables. (Pull #470) +- Wait for the `asyncio` stream to close when closing a connection. (Pull #494) + ## 0.7.5 (October 10, 2019) ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index ddc6dff5..106c3454 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.5" +__version__ = "0.7.6"