]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.6.2, SQL tutorial improvements and project generator
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 23 Feb 2019 21:09:49 +0000 (01:09 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 23 Feb 2019 21:09:49 +0000 (01:09 +0400)
docs/release-notes.md
fastapi/__init__.py

index 08e9fc989db1b4982a54d274d58116f0e69189fe..8635b2b2dca2e762df0586d94d8aa97271815225 100644 (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>.
index 14dc6142a810a83717c60fe6d850ca3ad03b55d0..86db578e5d3a188598e1a19438bfb6529edfbc80 100644 (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