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()