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"]