From: Sebastián Ramírez Date: Tue, 2 Dec 2025 10:47:05 +0000 (+0100) Subject: 🔖 Release version 0.123.4 X-Git-Tag: 0.123.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4976568fc7cb7501729d8f84d946cde1e91299cd;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.123.4 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 6040c49301..74c7eb9ea8 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.123.4 + ### Fixes * 🐛 Fix OpenAPI schema support for computed fields when using `separate_input_output_schemas=False`. PR [#13207](https://github.com/fastapi/fastapi/pull/13207) by [@vgrafe](https://github.com/vgrafe). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index a15326cc25..b1d2dcecc8 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.3" +__version__ = "0.123.4" from starlette import status as status