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