diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 200e8cc89..2e64f0c0a 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.123.2 + ### Fixes * 🐛 Fix unformatted `{type_}` in FastAPIError. PR [#14416](https://github.com/fastapi/fastapi/pull/14416) by [@Just-Helpful](https://github.com/Just-Helpful). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 4f6982035..7a6ee14f2 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.123.1" +__version__ = "0.123.2" from starlette import status as status