From 9a6b3a8249df6e38f3683c457df8297fb1319d80 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Tue, 28 May 2024 03:18:48 -0400 Subject: [PATCH] Version 0.30.0 (#2348) * Version 0.30.0 * Update CHANGELOG.md * Update CHANGELOG.md --- CHANGELOG.md | 16 ++++++++++++++++ uvicorn/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb88da79..8960fb1a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 0.30.0 (2024-05-28) + +### Added + +- New multiprocess manager (#2183) +- Allow `ConfigParser` or a `io.IO[Any]` on `log_config` (#1976) + +### Fixed + +- Suppress side-effects of signal propagation (#2317) +- Send `content-length` header on 5xx (#2304) + +### Deprecated + +- Deprecate the `uvicorn.workers` module (#2302) + ## 0.29.0 (2024-03-19) ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 4df960ebf..e20a7eba5 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.29.0" +__version__ = "0.30.0" __all__ = ["main", "run", "Config", "Server"]