From: Sebastián Ramírez Date: Wed, 8 Oct 2025 14:49:59 +0000 (+0200) Subject: 🔖 Release version 0.118.2 X-Git-Tag: 0.118.2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=942fce394bd66b841b9399cff815bb8a18cfd4c6;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.118.2 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 9df0a665d8..6dfc92cbcb 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.118.2 + ### Fixes * 🐛 Fix tagged discriminated union not recognized as body field. PR [#12942](https://github.com/fastapi/fastapi/pull/12942) by [@frankie567](https://github.com/frankie567). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 12ebbaf9bf..cd606969c5 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.118.1" +__version__ = "0.118.2" from starlette import status as status