diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d01f21..4d1ff8fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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 +## 1.0.5 (March 27th, 2024) - Handle `EndOfStream` exception for anyio backend. (#899) - Allow trio `0.25.*` series in package dependancies. (#903) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index ea2a2409..014213ba 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -130,7 +130,7 @@ def __init__(self, *args, **kwargs): # type: ignore "WriteError", ] -__version__ = "1.0.4" +__version__ = "1.0.5" __locals = locals()