diff --git a/CHANGELOG.md b/CHANGELOG.md index fa269fc3f..40aace5a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## 0.30.2 (2024-07-20) + +### Added + +- Add `reason` support to [`websocket.disconnect`](https://asgi.readthedocs.io/en/latest/specs/www.html#disconnect-receive-event-ws) event (#2324) + +### Fixed + +- Iterate subprocesses in-place on the process manager (#2373) + ## 0.30.1 (2024-06-02) ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index f26b04243..17b80e8c8 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.30.1" +__version__ = "0.30.2" __all__ = ["main", "run", "Config", "Server"]