From eb06f6037a2a91a072548752549185b2edeb4931 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 24 Apr 2025 22:55:46 +0100 Subject: [PATCH 1/2] Version 1.0.9 --- httpcore/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index dde5de8a..9a92dc4a 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -131,7 +131,7 @@ def __init__(self, *args, **kwargs): # type: ignore "WriteError", ] -__version__ = "1.0.8" +__version__ = "1.0.9" __locals = locals() From dc61e4a9bbf360fe858542e674e63586af3755f6 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 24 Apr 2025 23:00:13 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04783a0b..b43d7f01 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/). +## Version 1.0.9 (April 24th, 2025) + +- Resolve https://github.com/advisories/GHSA-vqfr-h8mv-ghfj with h11 dependency update. (#1008) + ## Version 1.0.8 (April 11th, 2025) - Fix `AttributeError` when importing on Python 3.14. (#1005)