]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.6.0, upgrade Starlette, improve SQLAlchemy compatibility
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 19 Feb 2019 17:20:32 +0000 (21:20 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 19 Feb 2019 17:20:32 +0000 (21:20 +0400)
docs/release-notes.md
fastapi/__init__.py

index b3912de5e22f356b9f03c72c89c2d93029997653..69c742ca7443148468eb5f9200cbe16924720b14 100644 (file)
@@ -1,5 +1,7 @@
 ## Next
 
+## 0.6.0
+
 * Update SQL with SQLAlchemy tutorial at <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/" target="_blank">https://fastapi.tiangolo.com/tutorial/sql-databases/</a> using the new official `request.state`.
 
 * Upgrade Starlette to version `0.11.1` and add required compatibility changes. PR <a href="https://github.com/tiangolo/fastapi/pull/44" target="_blank">#44</a>.
index 7377eed3d1141824da6b95a4d5c778ecee4dd8d3..c9993150af20c0b10514d30654a7a7b3144bcd91 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.5.1"
+__version__ = "0.6.0"
 
 from .applications import FastAPI
 from .routing import APIRouter