diff --git a/CHANGELOG.md b/CHANGELOG.md index a788255d..a93f5369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.14.3 (November 17th, 2021) + +- Fix race condition when removing closed connections from the pool (#437) + ## 0.14.2 (November 16th, 2021) - Failed connections no longer remain in the pool. (Pull #433) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 18ab294d..f5002ce1 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -78,7 +78,7 @@ "WriteError", ] -__version__ = "0.14.2" +__version__ = "0.14.3" __locals = locals()