🔖 Release version 0.50.0

This commit is contained in:
Sebastián Ramírez 2020-02-29 21:49:09 +01:00
parent f0beab1778
commit f2bd2c44e2
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Latest changes ## Latest changes
## 0.50.0
* Add link to Release Notes from docs about pinning versions for deployment. PR [#1058](https://github.com/tiangolo/fastapi/pull/1058). * Add link to Release Notes from docs about pinning versions for deployment. PR [#1058](https://github.com/tiangolo/fastapi/pull/1058).
* Upgrade code to use the latest version of Starlette, including: * Upgrade code to use the latest version of Starlette, including:
* Several bug fixes. * Several bug fixes.

View File

@ -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.49.2" __version__ = "0.50.0"
from starlette.background import BackgroundTasks from starlette.background import BackgroundTasks