From: Sebastián Ramírez Date: Wed, 19 Nov 2025 16:51:59 +0000 (+0100) Subject: 🔖 Release version 0.121.3 X-Git-Tag: 0.121.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=325fd16d32fd815633d6caf3d0d75aa7f30c51c9;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.121.3 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index c466152f29..c02fe075dc 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.121.3 + ### Refactors * ♻️ Make the result of `Depends()` and `Security()` hashable, as a workaround for other tools interacting with these internal parts. PR [#14372](https://github.com/fastapi/fastapi/pull/14372) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 0672423cfc..85a7ea7b53 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.2" +__version__ = "0.121.3" from starlette import status as status