From 4f852878d6fb703487b0df8410b58f7b311ab18e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 22 Mar 2019 16:29:33 +0400 Subject: [PATCH] :bookmark: Release 0.9.0, compatible with latest Pydantic --- docs/release-notes.md | 2 ++ fastapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 5252b1f2c..c1afdd447 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 15ebe9731..99277ad01 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