🔖 Release version 0.29.0

This commit is contained in:
Sebastián Ramírez 2019-06-06 14:31:50 +04:00
parent d329745064
commit 7244e4b612
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Latest changes
## 0.29.0
* Add support for declaring a `Response` parameter:
* This allows declaring:
* [Response Cookies](https://fastapi.tiangolo.com/tutorial/response-cookies/).

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.28.0"
__version__ = "0.29.0"
from starlette.background import BackgroundTasks