From: Sebastián Ramírez Date: Sun, 1 Mar 2020 21:02:51 +0000 (+0100) Subject: :bookmark: Release version 0.51.0 X-Git-Tag: 0.51.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf760d6802d33d6fd3c72bcd6d57029419fdb33a;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release version 0.51.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 29e229ee6c..f3b42e535d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.51.0 + * Re-export utils from Starlette: * This allows using things like `from fastapi.responses import JSONResponse` instead of `from starlette.responses import JSONResponse`. * It's mainly syntax sugar, a convenience for developer experience. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index b558d111e0..680abe9010 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.50.0" +__version__ = "0.51.0" from starlette import status