From: Sebastián Ramírez Date: Mon, 3 Nov 2025 10:21:36 +0000 (+0100) Subject: 🔖 Release version 0.121.0 X-Git-Tag: 0.121.0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4efae81a76b809998c12fc0f7e1c172f451cb304;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.121.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 93e6d3e12..a08aa14fc 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.121.0 + ### Features * ✨ Add support for dependencies with scopes, support `scope="request"` for dependencies with `yield` that exit before the response is sent. PR [#14262](https://github.com/fastapi/fastapi/pull/14262) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 93555bfdc..f4a952bf5 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -1,6 +1,6 @@ """FastAPI framework, high performance, easy to learn, fast to code, ready for production""" -__version__ = "0.120.4" +__version__ = "0.121.0" from starlette import status as status