From: Sebastián Ramírez Date: Sat, 8 Nov 2025 21:47:00 +0000 (+0100) Subject: 🔖 Release version 0.121.1 X-Git-Tag: 0.121.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c7e2540c22ba5e81250cc715d82db31e52a63d6;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.121.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index b50a2f2dc3..7c2ea54f93 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.121.1 + ### Fixes * 🐛 Fix `Depends(func, scope='function')` for top level (parameterless) dependencies. PR [#14301](https://github.com/fastapi/fastapi/pull/14301) by [@luzzodev](https://github.com/luzzodev). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index f4a952bf5c..5c4804e196 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.121.0" +__version__ = "0.121.1" from starlette import status as status