From e1d6b205dfa625d505cfe2baff75937cdbe95167 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 12 Feb 2024 11:23:01 +0000 Subject: [PATCH] Version 1.0.3 --- CHANGELOG.md | 2 +- httpcore/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d537c8e..f3fe41e8 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.3 (February 13th, 2024) - Fix support for async cancellations. (#880) - Fix trace extension when used with socks proxy. (#849) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index eb3e5771..3709fc40 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -130,7 +130,7 @@ def __init__(self, *args, **kwargs): # type: ignore "WriteError", ] -__version__ = "1.0.2" +__version__ = "1.0.3" __locals = locals()