Skip to content

Commit c459165

Browse files
authored
Version 0.21.0 (#1892)
1 parent 9b0a8f6 commit c459165

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Change Log
22

3+
## 0.21.0 - 2023-03-09
4+
5+
### Added
6+
7+
- Introduce lifespan state (#1818) 05/03/23
8+
- Allow headers to be sent as iterables on H11 implementation (#1782) 27/11/22
9+
- Improve discoverability when --port=0 is used (#1890) 09/03/23
10+
11+
### Changed
12+
13+
- Avoid importing `h11` and `pyyaml` when not needed to improve import time (#1846) 07/02/23
14+
- Replace current native `WSGIMiddleware` implementation by `a2wsgi` (#1825) 16/01/23
15+
- Change default `--app-dir` from "." (dot) to "" (empty string) (#1835) 06/01/23
16+
17+
### Fixed
18+
19+
- Send code 1012 on shutdown for WebSockets (#1816) 06/01/23
20+
- Use `surrogateescape` to encode headers on `websockets` implementation (#1005) 12/12/22
21+
- Fix warning message on reload failure (#1784) 29/11/22
22+
323
## 0.20.0 - 2022-11-20
424

525
### Added

uvicorn/__init__.py

Lines changed: 1 addition & 1 deletion
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.20.0"
4+
__version__ = "0.21.0"
55
__all__ = ["main", "run", "Config", "Server"]

0 commit comments

Comments
 (0)