From: Florimond Manca Date: Thu, 26 Sep 2019 11:45:38 +0000 (+0200) Subject: Release 0.7.4 (#388) X-Git-Tag: 0.7.4^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=640667d81d4bbf0d6f5e319d061353cad083f068;p=thirdparty%2Fhttpx.git Release 0.7.4 (#388) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e32ba4f..2bca97d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ 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.4 (September 25, 2019) + +### Added + +- Add Trio concurrency backend. (Pull #276) +- Add `params` parameter to `Client` for setting default query parameters. (Pull #372) +- Add support for `SSL_CERT_FILE` and `SSL_CERT_DIR` environment variables. (Pull #307) +- Add debug logging to calls into ASGI apps. (Pull #371) +- Add debug logging to SSL configuration. (Pull #378) + +### Fixed + +- Fix a bug when using `Client` without timeouts in Python 3.6. (Pull #383) +- Propagate `Client` configuration to HTTP proxies. (Pull #377) + ## 0.7.3 (September 20, 2019) ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index 2489b005..0cb6368b 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.3" +__version__ = "0.7.4"