From 888c163bb385dc89fc802a7a01aa8420ded55774 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 27 May 2020 15:56:19 +0100 Subject: [PATCH] Version 0.9.1 (#99) * Version 0.9.1 * Update changelog --- CHANGELOG.md | 7 +++++++ httpcore/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9db6ae2..5c30d9de 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.9.1 (May 27th, 2020) + +### Fixed + +- Proper host resolution for sync case, including IPv6 support. (Pull #97) +- Close outstanding connections when connection pool is closed. (Pull #98) + ## 0.9.0 (May 21th, 2020) ### Changed diff --git a/httpcore/__init__.py b/httpcore/__init__.py index d72bf8d1..2cf16193 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -39,4 +39,4 @@ "WriteError", "CloseError", ] -__version__ = "0.9.0" +__version__ = "0.9.1"