From 0ed55eb7d314b44cf966610300caf0ff5127da65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 19 Feb 2019 21:20:32 +0400 Subject: [PATCH] :bookmark: Release 0.6.0, upgrade Starlette, improve SQLAlchemy compatibility --- 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 b3912de5e..69c742ca7 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next +## 0.6.0 + * Update SQL with SQLAlchemy tutorial at https://fastapi.tiangolo.com/tutorial/sql-databases/ using the new official `request.state`. * Upgrade Starlette to version `0.11.1` and add required compatibility changes. PR #44. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 7377eed3d..c9993150a 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.5.1" +__version__ = "0.6.0" from .applications import FastAPI from .routing import APIRouter