From: Tom Christie Date: Wed, 4 Jan 2023 09:39:43 +0000 (+0000) Subject: Version 0.23.3 (#2540) X-Git-Tag: 0.23.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08a557e3e2b9220b90ee21238e316206ffa65d36;p=thirdparty%2Fhttpx.git Version 0.23.3 (#2540) --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 25907a78..9f26d671 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.23.3 (4th Jan, 2023) + +### Fixed + +* Version 0.23.2 accidentally included stricter type checking on query parameters. This shouldn've have been included in a minor version bump, and is now reverted. (#2523, #2539) + ## 0.23.2 (2nd Jan, 2023) ### Added diff --git a/httpx/__version__.py b/httpx/__version__.py index a250df50..c8823f36 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.23.2" +__version__ = "0.23.3"