🔖 Release 0.10.1: support for encode/databases

This commit is contained in:
Sebastián Ramírez 2019-03-25 22:21:59 +04:00
parent 1c2ecbb89a
commit b0f7961b65
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
## Next release
## 0.10.1
* Add docs and tests for <a href="https://github.com/encode/databases" target="_blank">encode/databases</a>. New docs at: <a href="https://fastapi.tiangolo.com/tutorial/async-sql-databases/" target="_blank">Async SQL (Relational) Databases</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/107" target="_blank">#107</a>.
## 0.10.0
* Add support for Background Tasks in *path operation functions* and dependencies. New documentation about <a href="https://fastapi.tiangolo.com/tutorial/background-tasks/" target="_blank">Background Tasks is here</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/103" target="_blank">#103</a>.

View File

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