diff --git a/CHANGELOG.md b/CHANGELOG.md index e76f31e26..79fd1f344 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index f199d6d7b..4423c441d 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.20.0" +__version__ = "0.21.0" __all__ = ["main", "run", "Config", "Server"]