🔖 Release 0.6.4

This commit is contained in:
Sebastián Ramírez 2019-03-02 22:33:48 +04:00
parent b98bf178a6
commit 1f03e85f06
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next
## 0.6.4
* Add <a href="https://fastapi.tiangolo.com/async/#very-technical-details" target="_blank">technical details about `async def` handling to docs</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/61" target="_blank">#61</a>.
* Add docs for <a href="https://fastapi.tiangolo.com/tutorial/debugging/" target="_blank">Debugging FastAPI applications in editors</a>.

View File

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