From: Sebastián Ramírez Date: Mon, 7 Oct 2019 11:44:07 +0000 (-0500) Subject: :bookmark: Release version 0.41.0 X-Git-Tag: 0.41.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5592fa0f6f6b9c9b3ae774d80adb8163fcdedfdf;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release version 0.41.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 678a4a47ea..a6d35c6504 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.41.0 + * Upgrade required Starlette to `0.12.9`, the new range is `>=0.12.9,<=0.12.9`. * Add `State` to FastAPI apps at `app.state`. * PR [#593](https://github.com/tiangolo/fastapi/pull/593). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index dd6fd0398e..76c25d5055 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.40.0" +__version__ = "0.41.0" from starlette.background import BackgroundTasks