🔖 Release 0.6.2, SQL tutorial improvements and project generator

This commit is contained in:
Sebastián Ramírez 2019-02-24 01:09:49 +04:00
parent 24d94298d0
commit 9940c1511e
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next
## 0.6.2
* Introduce new project generator based on FastAPI and PostgreSQL<a href="https://github.com/tiangolo/full-stack-fastapi-postgresql" target="_blank">https://github.com/tiangolo/full-stack-fastapi-postgresql</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/52" target="_blank">#52</a>.
* Update <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/" target="_blank">SQL tutorial with SQLAlchemy, using `Depends` to improve editor support and reduce code repetition</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/52" target="_blank">#52</a>.

View File

@ -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