From: Sebastián Ramírez Date: Sun, 9 Aug 2020 20:36:47 +0000 (+0200) Subject: 🔖 Release version 0.61.0 X-Git-Tag: 0.61.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a6897963d5ff2c836313c3b69fc6062051c07a63;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.61.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index b5c6c492ba..4048ffab48 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest changes +## 0.61.0 + ### Features * Add support for injecting `HTTPConnection` (as `Request` and `WebSocket`). Useful for sharing app state in dependencies. PR [#1827](https://github.com/tiangolo/fastapi/pull/1827) by [@nsidnev](https://github.com/nsidnev). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 408c99db1d..6169e1452c 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.60.2" +__version__ = "0.61.0" from starlette import status