Version 0.22.0 (#1957)

This commit is contained in:
Marcelo Trylesinski 2023-04-27 18:51:50 -06:00 committed by GitHub
parent 4d302a9e23
commit 71043a9c8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<!-- Thanks for contributing to Starlette! 💚
<!-- Thanks for contributing to Uvicorn! 💚
Given this is a project maintained by volunteers, please read this template to not waste your time, or ours! 😁 -->
# Summary

View File

@ -1,5 +1,17 @@
# Change Log
## 0.22.0 - 2023-04-28
### Added
- Add `--timeout-graceful-shutdown` parameter (#1950) 26/04/23
- Handle `SIGBREAK` on Windows (#1909) 15/04/23
### Fixed
- Shutdown event is now being triggered on Windows when using hot reload (#1584) 13/04/23
- `--reload-delay` is effectively used on the `watchfiles` reloader (#1930) 22/04/23
## 0.21.1 - 2023-03-16
### Fixed

View File

@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run
__version__ = "0.21.1"
__version__ = "0.22.0"
__all__ = ["main", "run", "Config", "Server"]