From: Sebastián Ramírez Date: Sat, 23 Feb 2019 21:09:49 +0000 (+0400) Subject: :bookmark: Release 0.6.2, SQL tutorial improvements and project generator X-Git-Tag: 0.6.2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9940c1511eb0d01f0b1e9ec3b6312e7485d7dbb4;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.6.2, SQL tutorial improvements and project generator --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 08e9fc989d..8635b2b2dc 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 14dc6142a8..86db578e5d 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