diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5e0c336..1c65f9b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.29.0 - 2024-03-19 + +### Added + +- Cooperative signal handling (#1600) 19/03/24 + ## 0.28.1 - 2024-03-19 ### Fixed diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 538ea30f0..4df960ebf 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.28.1" +__version__ = "0.29.0" __all__ = ["main", "run", "Config", "Server"]