From: Sebastián Ramírez Date: Thu, 30 Oct 2025 20:40:08 +0000 (+0100) Subject: 🔖 Release version 0.120.3 X-Git-Tag: 0.120.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cf04ee30db9df2db04a5b1e0d2c625dfbf1a211;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.120.3 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 64c2153063..a2c99eaf97 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.120.3 + ### Refactors * ♻️ Reduce internal cyclic recursion in dependencies, from 2 functions calling each other to 1 calling itself. PR [#14256](https://github.com/fastapi/fastapi/pull/14256) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index a4c17a6bd8..945f800e4a 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.2" +__version__ = "0.120.3" from starlette import status as status