diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 0475df64b4..4ad617e477 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,9 +7,12 @@ hide: ## Latest Changes +## 0.135.0 + ### Features * ✨ Add support for Server Sent Events. PR [#15030](https://github.com/fastapi/fastapi/pull/15030) by [@tiangolo](https://github.com/tiangolo). + * New docs: [Server-Sent Events (SSE)](https://fastapi.tiangolo.com/tutorial/server-sent-events/). ## 0.134.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index aac0176ba7..c6fcac42f0 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.134.0" +__version__ = "0.135.0" from starlette import status as status