]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.6.1: GraphQL
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 20 Feb 2019 17:59:24 +0000 (21:59 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 20 Feb 2019 17:59:24 +0000 (21:59 +0400)
docs/release-notes.md
fastapi/__init__.py

index 577c47e9fe83364b9cf7d8661aca6b27765f6cbf..c4390bdd5276d5fe42cc5850012d69742ea95cf0 100644 (file)
@@ -1,5 +1,9 @@
 ## Next
 
+## 0.6.1
+
+* Add docs for GraphQL: <a href="https://fastapi.tiangolo.com/tutorial/graphql/" target="_blank">https://fastapi.tiangolo.com/tutorial/graphql/</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/48" target="_blank">#48</a>.
+
 ## 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`. PR <a href="https://github.com/tiangolo/fastapi/pull/45" target="_blank">#45</a>.
index c9993150af20c0b10514d30654a7a7b3144bcd91..14dc6142a810a83717c60fe6d850ca3ad03b55d0 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.6.0"
+__version__ = "0.6.1"
 
 from .applications import FastAPI
 from .routing import APIRouter