diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a57a842..a8e10426 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 (May 17th, 2023) + +- If 'retries' is set, then allow retries if an SSL handshake error occurs. (#669) +- Improve correctness of tracebacks on network exceptions, by raising properly chained exceptions. (#678) +- Prevent connection-hanging behaviour when HTTP/2 connections are closed by a server-sent 'GoAway' frame. (#679) +- Fix edge-case exception when removing requests from the connection pool. (#680) + ## 0.17.0 (March 16th, 2023) - Add DEBUG level logging. (#648) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 77e70d17..530c9697 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -82,7 +82,7 @@ "WriteError", ] -__version__ = "0.17.0" +__version__ = "0.17.1" __locals = locals()