Browse Source

🔖 Release 0.9.0, compatible with latest Pydantic

pull/99/head 0.9.0
Sebastián Ramírez 6 years ago
parent
commit
4f852878d6
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -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>.

2
fastapi/__init__.py

@ -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

Loading…
Cancel
Save