diff --git a/CHANGELOG.md b/CHANGELOG.md index 79f8cb6ad..db820a896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.31.1 (2024-10-09) + +### Fixed + +* Support WebSockets 0.13.1 (#2471) +* Restore support for `[*]` in trusted hosts (#2480) +* Add `PathLike[str]` type hint for `ssl_keyfile` (#2481) + ## 0.31.0 (2024-09-27) ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index f14403d1d..642355f03 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.0" +__version__ = "0.31.1" __all__ = ["main", "run", "Config", "Server"]