]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.23.0 0.23.0
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 21 May 2019 19:26:28 +0000 (23:26 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 21 May 2019 19:26:28 +0000 (23:26 +0400)
docs/release-notes.md
fastapi/__init__.py

index abcf17be87fee4adcee8488e88a2c39978413b22..e76d83602a0bbfc10f47f1fbde145ecf6cea91c5 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.23.0
+
 * Upgrade the compatible version of Starlette to `0.12.0`.
     * 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()`).
index d27352161d06fbcb72d700eee8666be85946965a..25bb491a4832a8eb5435e6ed17774054f09ab9c9 100644 (file)
@@ -1,6 +1,6 @@
 """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