From: Sebastián Ramírez Date: Fri, 22 Mar 2019 12:29:33 +0000 (+0400) Subject: :bookmark: Release 0.9.0, compatible with latest Pydantic X-Git-Tag: 0.9.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f852878d6fb703487b0df8410b58f7b311ab18e;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.9.0, compatible with latest Pydantic --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 5252b1f2ce..c1afdd4471 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.9.0 + * Upgrade compatible Pydantic version to `0.21.0`. PR #90. * Add documentation for: Application Configuration. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 15ebe97313..99277ad010 100644 --- a/fastapi/__init__.py +++ b/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