From: Sebastián Ramírez Date: Sat, 24 Feb 2024 23:19:38 +0000 (+0100) Subject: 🔖 Release version 0.110.0 X-Git-Tag: 0.110.0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e40747f10ae911910e9cb9a9684576f3b21304c9;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.110.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index c442f1449d..e01c3544f3 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.110.0 + ### Breaking Changes * 🐛 Fix unhandled growing memory for internal server errors, refactor dependencies with `yield` and `except` to require raising again as in regular Python. PR [#11191](https://github.com/tiangolo/fastapi/pull/11191) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 3458b9e5b9..2349692566 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.109.2" +__version__ = "0.110.0" from starlette import status as status