From: Sebastián Ramírez Date: Fri, 6 Feb 2026 16:44:11 +0000 (+0100) Subject: 🔖 Release version 0.128.3 X-Git-Tag: 0.128.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36985f5f25a5a706e5c9bd4630a3c74f45f6bfe7;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.128.3 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index c782655129..a55a15abd7 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.128.3 + ### Refactors * ♻️ Re-implement `on_event` in FastAPI for compatibility with the next Starlette, while keeping backwards compatibility. PR [#14851](https://github.com/fastapi/fastapi/pull/14851) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 99b9630d20..b23e3c42fb 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.128.2" +__version__ = "0.128.3" from starlette import status as status