Browse Source

🔖 Release version 0.51.0

pull/1065/head 0.51.0
Sebastián Ramírez 5 years ago
parent
commit
cf760d6802
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -1,5 +1,7 @@
## Latest changes ## Latest changes
## 0.51.0
* Re-export utils from Starlette: * Re-export utils from Starlette:
* This allows using things like `from fastapi.responses import JSONResponse` instead of `from starlette.responses import JSONResponse`. * 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. * It's mainly syntax sugar, a convenience for developer experience.

2
fastapi/__init__.py

@ -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.50.0" __version__ = "0.51.0"
from starlette import status from starlette import status

Loading…
Cancel
Save