mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.61.0
This commit is contained in:
parent
c14803e3fa
commit
a6897963d5
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue