From 200fd19525c70377f2f746db80a541aa1808d4bd Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Fri, 15 Nov 2024 11:01:38 +0000 Subject: [PATCH] Version 1.0.7 --- CHANGELOG.md | 4 ++-- httpcore/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e33b10c4..0b46c6c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ 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/). -## [Unreleased] +## Version 1.0.7 (November 15th, 2024) -- Support `proxy=…` configuration on `ConnectionPool()`. +- Support `proxy=…` configuration on `ConnectionPool()`. (#974) ## Version 1.0.6 (October 1st, 2024) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 0d4946e7..662b1563 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -131,7 +131,7 @@ def __init__(self, *args, **kwargs): # type: ignore "WriteError", ] -__version__ = "1.0.6" +__version__ = "1.0.7" __locals = locals()