From: Sebastián Ramírez Date: Fri, 12 Dec 2025 14:32:58 +0000 (+0100) Subject: 🔖 Release version 0.124.3 X-Git-Tag: 0.124.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fe6522aaed4d36d6a38175a4a8137ee0fc62451;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.124.3 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 760a8c2d87..05c43b5f6e 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.124.3 + ### Fixes * 🐛 Fix support for tagged union with discriminator inside of `Annotated` with `Body()`. PR [#14512](https://github.com/fastapi/fastapi/pull/14512) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 8de426ad42..eeb2e10031 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.124.2" +__version__ = "0.124.3" from starlette import status as status