From f0d16e9462910c13d3b72039223346a3fe8a3299 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 15 Jun 2021 15:00:13 +0100 Subject: [PATCH] Version 0.13.6 (#366) --- CHANGELOG.md | 6 ++++++ httpcore/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab5250c8..c313fde9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.13.6 (June 15th, 2021) + +### Fixed + +- Close sockets when read or write timeouts occur. (Pull #365) + ## 0.13.5 (June 14th, 2021) ### Fixed diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 577ccb65..2dde34e3 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -51,7 +51,7 @@ "WriteError", "WriteTimeout", ] -__version__ = "0.13.5" +__version__ = "0.13.6" __locals = locals()