Skip to content

Commit

Permalink
Version 0.21.0 (#1892)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Mar 9, 2023
1 parent 9b0a8f6 commit c459165
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log

## 0.21.0 - 2023-03-09

### Added

- Introduce lifespan state (#1818) 05/03/23
- Allow headers to be sent as iterables on H11 implementation (#1782) 27/11/22
- Improve discoverability when --port=0 is used (#1890) 09/03/23

### Changed

- Avoid importing `h11` and `pyyaml` when not needed to improve import time (#1846) 07/02/23
- Replace current native `WSGIMiddleware` implementation by `a2wsgi` (#1825) 16/01/23
- Change default `--app-dir` from "." (dot) to "" (empty string) (#1835) 06/01/23

### Fixed

- Send code 1012 on shutdown for WebSockets (#1816) 06/01/23
- Use `surrogateescape` to encode headers on `websockets` implementation (#1005) 12/12/22
- Fix warning message on reload failure (#1784) 29/11/22

## 0.20.0 - 2022-11-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion uvicorn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from uvicorn.config import Config
from uvicorn.main import Server, main, run

__version__ = "0.20.0"
__version__ = "0.21.0"
__all__ = ["main", "run", "Config", "Server"]

0 comments on commit c459165

Please sign in to comment.