diff --git a/CHANGELOG.md b/CHANGELOG.md index b98b734b7..13e761204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 0.23.0 - 2023-07-10 + +### Added + +- Add `--ws-max-queue` parameter WebSockets (#2033) 10/07/23 + +### Removed + +- Drop support for Python 3.7 (#1996) 19/06/23 +- Remove `asgiref` as typing dependency (#1999) 08/06/23 + +### Fixed + +- Set `scope["scheme"]` to `ws` or `wss` instead of `http` or `https` on `ProxyHeadersMiddleware` for WebSockets (#2043) 12/07/23 + +### Changed + +- Raise `ImportError` on circular import (#2040) 09/07/23 +- Use `logger.getEffectiveLevel()` instead of `logger.level` to check if log level is `TRACE` (#1966) 01/06/23 + ## 0.22.0 - 2023-04-28 ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 1f7fded6e..75fa02036 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.22.0" +__version__ = "0.23.0" __all__ = ["main", "run", "Config", "Server"]