From: Sebastián Ramírez Date: Mon, 29 Sep 2025 03:34:21 +0000 (+0200) Subject: 🔖 Release version 0.118.0 X-Git-Tag: 0.118.0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=333f1ba737be6507fc707278f6b69cf1f81efdc1;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.118.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 6841006933..29112649c7 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.118.0 + ### Fixes * 🐛 Fix support for `StreamingResponse`s with dependencies with `yield` or `UploadFile`s, close after the response is done. PR [#14099](https://github.com/fastapi/fastapi/pull/14099) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 986fd200c9..03a5aaad5a 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.117.1" +__version__ = "0.118.0" from starlette import status as status