From 99fafb3c3b15e32dbaa504993161cb0c6898227f Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Tue, 16 Jan 2024 18:53:53 +0100 Subject: [PATCH] Version 0.26.0 (#2216) --- CHANGELOG.md | 7 +++++++ uvicorn/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7730032f..87145f5d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 0.26.0 - 2024-01-16 + +### Changed + +- Update `--root-path` to include the root path prefix in the full ASGI `path` as per the ASGI spec (#2213) 16/01/24 +- Use `__future__.annotations` on some internal modules (#2199) 16/01/24 + ## 0.25.0 - 2023-12-17 ### Added diff --git a/uvicorn/__init__.py b/uvicorn/__init__.py index 666390ac9..5b55038fc 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.25.0" +__version__ = "0.26.0" __all__ = ["main", "run", "Config", "Server"]