🔖 Release 0.9.0, compatible with latest Pydantic

This commit is contained in:
Sebastián Ramírez 2019-03-22 16:29:33 +04:00
parent 59bc4b7d69
commit 4f852878d6
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next release
## 0.9.0
* Upgrade compatible Pydantic version to `0.21.0`. PR <a href="https://github.com/tiangolo/fastapi/pull/90" target="_blank">#90</a>.
* Add documentation for: <a href="https://fastapi.tiangolo.com/tutorial/application-configuration/" target="_blank">Application Configuration</a>.

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.8.0"
__version__ = "0.9.0"
from .applications import FastAPI
from .datastructures import UploadFile