From 04c6320f396938363e5f5488ffbf19adf528681e Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Wed, 20 Nov 2024 20:22:48 +0100 Subject: [PATCH] Version 0.32.1 (#2515) * Version 0.32.1 * Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ uvicorn/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74af8e5ee..ffa11d53f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.32.1 (2024-11-20) + +### Fixed + +* Drop ASGI spec version to 2.3 on HTTP scope [#2513](https://github.com/encode/uvicorn/pull/2513) +* Enable httptools lenient data on `httptools >= 0.6.3` [#2488](https://github.com/encode/uvicorn/pull/2488) + ## 0.32.0 (2024-10-15) ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index c5c7b8f33..869de7984 100644 --- a/uvicorn/__init__.py +++ b/uvicorn/__init__.py @@ -1,5 +1,5 @@ from uvicorn.config import Config from uvicorn.main import Server, main, run -__version__ = "0.32.0" +__version__ = "0.32.1" __all__ = ["main", "run", "Config", "Server"]