Browse Source

🔖 Release 0.6.2, SQL tutorial improvements and project generator

pull/53/head
Sebastián Ramírez 6 years ago
parent
commit
9940c1511e
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -1,5 +1,7 @@
## Next ## 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>. * 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>. * 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>.

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" """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 .applications import FastAPI
from .routing import APIRouter from .routing import APIRouter

Loading…
Cancel
Save