From 21450a75323c715555bf147a941968fa6d662ef5 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 16 Mar 2023 13:41:19 +0000 Subject: [PATCH] Version 0.17.0 (#661) * Add DEBUG level logging * Add connection.close logging * Update tests * Add logging documentation * Version 0.17.0 * Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ httpcore/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95ef72b6..9a57a842 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.0 (March 16th, 2023) + +- Add DEBUG level logging. (#648) +- Respect HTTP/2 max concurrent streams when settings updates are sent by server. (#652) +- Increase the allowable HTTP header size to 100kB. (#647) +- Add `retries` option to SOCKS proxy classes. (#643) + ## 0.16.3 (December 20th, 2022) - Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections. (#625) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 8cb3f8d5..77e70d17 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -82,7 +82,7 @@ "WriteError", ] -__version__ = "0.16.3" +__version__ = "0.17.0" __locals = locals()