From 9940c1511eb0d01f0b1e9ec3b6312e7485d7dbb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 24 Feb 2019 01:09:49 +0400 Subject: [PATCH] :bookmark: Release 0.6.2, SQL tutorial improvements and project generator --- 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 08e9fc989..8635b2b2d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next +## 0.6.2 + * Introduce new project generator based on FastAPI and PostgreSQLhttps://github.com/tiangolo/full-stack-fastapi-postgresql. PR #52. * Update SQL tutorial with SQLAlchemy, using `Depends` to improve editor support and reduce code repetition. PR #52. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 14dc6142a..86db578e5 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.6.1" +__version__ = "0.6.2" from .applications import FastAPI from .routing import APIRouter