From 2e6930fd772fa130868a613cf83e052a034e3488 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Fri, 12 Mar 2021 18:29:20 +0000 Subject: [PATCH] Version 0.17.1 (#1505) --- CHANGELOG.md | 7 +++++++ httpx/__version__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14e4f92ce5..992f4e4e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.17.1 + +### Fixed + +* Type annotation on `CertTypes` allows `keyfile` and `password` to be optional. (Pull #1503) +* Fix httpcore pinned version. (Pull #1495) + ## 0.17.0 ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index f406d12d19..90fae6b2fb 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.17.0" +__version__ = "0.17.1"