Skip to content

Commit 71043a9

Browse files
authored
Version 0.22.0 (#1957)
1 parent 4d302a9 commit 71043a9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Thanks for contributing to Starlette! 💚
1+
<!-- Thanks for contributing to Uvicorn! 💚
22
Given this is a project maintained by volunteers, please read this template to not waste your time, or ours! 😁 -->
33

44
# Summary

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## 0.22.0 - 2023-04-28
4+
5+
### Added
6+
7+
- Add `--timeout-graceful-shutdown` parameter (#1950) 26/04/23
8+
- Handle `SIGBREAK` on Windows (#1909) 15/04/23
9+
10+
### Fixed
11+
12+
- Shutdown event is now being triggered on Windows when using hot reload (#1584) 13/04/23
13+
- `--reload-delay` is effectively used on the `watchfiles` reloader (#1930) 22/04/23
14+
315
## 0.21.1 - 2023-03-16
416

517
### Fixed

uvicorn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from uvicorn.config import Config
22
from uvicorn.main import Server, main, run
33

4-
__version__ = "0.21.1"
4+
__version__ = "0.22.0"
55
__all__ = ["main", "run", "Config", "Server"]

0 commit comments

Comments
 (0)