diff --git a/CHANGELOG.md b/CHANGELOG.md index e5205b111..5263d0ef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ 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.16.0 +## 0.16.1 (November 17th, 2022) + +- Fix HTTP/1.1 interim informational responses, such as "100 Continue". (#605) + +## 0.16.0 (October 11th, 2022) - Support HTTP/1.1 informational responses. (#581) - Fix async cancellation behaviour. (#580) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 30e28078c..08019cefd 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -82,7 +82,7 @@ "WriteError", ] -__version__ = "0.16.0" +__version__ = "0.16.1" __locals = locals()