diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 6cd6810ac..a786985d2 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.115.6 + ### Fixes * 🐛 Preserve traceback when exception is raised in sync dependency with `yield`. PR [#5823](https://github.com/fastapi/fastapi/pull/5823) by [@sombek](https://github.com/sombek). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 12faea987..823957822 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.115.5" +__version__ = "0.115.6" from starlette import status as status