diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index bdf15719b..87aa6d261 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.128.7 + ### Features * ✨ Show a clear error on attempt to include router into itself. PR [#14258](https://github.com/fastapi/fastapi/pull/14258) by [@JavierSanchezCastro](https://github.com/JavierSanchezCastro). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 95e57e2eb..a9fe3e971 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.6" +__version__ = "0.128.7" from starlette import status as status