From e1e2342eab248ac5b4459794eabed8361618abf4 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Tue, 16 May 2023 13:56:28 +0200 Subject: [PATCH 1/3] Version 0.24.1 --- httpx/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpx/__version__.py b/httpx/__version__.py index fe848d827a..6a8e63c602 100644 --- a/httpx/__version__.py +++ b/httpx/__version__.py @@ -1,3 +1,3 @@ __title__ = "httpx" __description__ = "A next generation HTTP client, for Python 3." -__version__ = "0.24.0" +__version__ = "0.24.1" From 3349894b43b4fe6e5e8b11bc4d18f910f1cf2075 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Tue, 16 May 2023 14:09:04 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba90e43a2e..e984f8188c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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/). +## 0.24.1 (16th May, 2023) + +### Fixed + +* Fix which gen-delims need to be escaped for path/query/fragment components in URL. (#2701) + ## 0.24.0 (6th April, 2023) ### Changed From e24862095c616eeb1a49ae6ccce08581f0b3fd04 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 17 May 2023 13:53:57 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e984f8188c..59ea026a38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,19 @@ 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/). -## 0.24.1 (16th May, 2023) +## 0.24.1 (17th May, 2023) + +### Added + +* Provide additional context in some `InvalidURL` exceptions. (#2675) ### Fixed +* Fix optional percent-encoding behaviour. (#2671) +* More robust checking for opening upload files in binary mode. (#2630) +* Properly support IP addresses in `NO_PROXY` environment variable. (#2659) +* Set default file for `NetRCAuth()` to `None` to use the stdlib default. (#2667) +* Set logging request lines to INFO level for async requests, in line with sync requests. (#2656) * Fix which gen-delims need to be escaped for path/query/fragment components in URL. (#2701) ## 0.24.0 (6th April, 2023)