🔖 Release 0.7.1, Raspberry Pi deployment and docs

This commit is contained in:
Sebastián Ramírez 2019-03-04 20:07:11 +04:00
parent b89a24448b
commit ac2b18bf40
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next
## 0.7.1
* Update <a href="https://fastapi.tiangolo.com/async/#path-operation-functions" target="_blank">technical details about `async def` handling</a> with respect to previous frameworks. PR <a href="https://github.com/tiangolo/fastapi/pull/64" target="_blank">#64</a> by <a href="https://github.com/haizaar" target="_blank">@haizaar</a>.
* Add <a href="https://fastapi.tiangolo.com/deployment/#raspberry-pi-and-other-architectures" target="_blank">deployment documentation for Docker in Raspberry Pi</a> and other architectures.

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.7.0"
__version__ = "0.7.1"
from .applications import FastAPI
from .routing import APIRouter