diff --git a/CHANGELOG.md b/CHANGELOG.md index db820a896..74af8e5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.32.0 (2024-10-15) + +### Added + +* Officially support Python 3.13 (#2482) +* Warn when `max_request_limit` is exceeded (#2430) + ## 0.31.1 (2024-10-09) ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 642355f03..c5c7b8f33 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.31.1" +__version__ = "0.32.0" __all__ = ["main", "run", "Config", "Server"]