From: Sebastián Ramírez Date: Thu, 4 Dec 2025 07:33:11 +0000 (+0100) Subject: 🔖 Release version 0.123.6 X-Git-Tag: 0.123.6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=811fa898752e7f5697733a2958ff79ad8dfb5276;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.123.6 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index a687e89ab7..8c80851b47 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.123.6 + ### Fixes * 🐛 Fix support for functools wraps and partial combined, for async and regular functions and classes in path operations and dependencies. PR [#14448](https://github.com/fastapi/fastapi/pull/14448) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 80b2a99c17..32223231e5 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.123.5" +__version__ = "0.123.6" from starlette import status as status