mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.23.0
This commit is contained in:
parent
6fca1041e9
commit
fc89eb8f81
|
|
@ -1,5 +1,7 @@
|
||||||
## Next release
|
## Next release
|
||||||
|
|
||||||
|
## 0.23.0
|
||||||
|
|
||||||
* Upgrade the compatible version of Starlette to `0.12.0`.
|
* Upgrade the compatible version of Starlette to `0.12.0`.
|
||||||
* This includes support for ASGI 3 (the latest version of the standard).
|
* This includes support for ASGI 3 (the latest version of the standard).
|
||||||
* It's now possible to use [Starlette's `StreamingResponse`](https://www.starlette.io/responses/#streamingresponse) with iterators, like [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) objects (as those returned by `open()`).
|
* It's now possible to use [Starlette's `StreamingResponse`](https://www.starlette.io/responses/#streamingresponse) with iterators, like [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) objects (as those returned by `open()`).
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
||||||
|
|
||||||
__version__ = "0.22.0"
|
__version__ = "0.23.0"
|
||||||
|
|
||||||
from starlette.background import BackgroundTasks
|
from starlette.background import BackgroundTasks
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue