From 7983c1ae9c2276b94cd85217f7aa58bb248847c4 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sun, 15 Dec 2024 14:31:56 +0100 Subject: [PATCH] Version 0.34.0 (#2546) --- CHANGELOG.md | 16 +++++++++++++--- uvicorn/__init__.py | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a62dc5c..e37e8e19a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,27 @@ # Change Log +## 0.34.0 (2024-12-15) + +### Added + +* Add `content-length` to 500 response in `wsproto` implementation (#2542) + +### Removed + +* Drop support for Python 3.8 (#2543) + ## 0.33.0 (2024-12-14) ### Removed -* Remove `WatchGod` support for `--reload` [#2536](https://github.com/encode/uvicorn/pull/2536) +* Remove `WatchGod` support for `--reload` (#2536) ## 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) +* Drop ASGI spec version to 2.3 on HTTP scope (#2513) +* Enable httptools lenient data on `httptools >= 0.6.3` (#2488) ## 0.32.0 (2024-10-15) diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 0a8f431f4..6c88b8901 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.33.0" +__version__ = "0.34.0" __all__ = ["main", "run", "Config", "Server"]