🔖 Release 0.18.0

This commit is contained in:
Sebastián Ramírez 2019-04-22 21:08:43 +04:00
parent 6324be684f
commit 8880c4cb03
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next release
## 0.18.0
* Add docs for <a href="https://fastapi.tiangolo.com/tutorial/security/http-basic-auth/" target="_blank">HTTP Basic Auth</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/177" target="_blank">#177</a>.
* Upgrade HTTP Basic Auth handling with automatic headers (automatic browser login prompt). PR <a href="https://github.com/tiangolo/fastapi/pull/175" target="_blank">#175</a>.

View File

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