From: Sebastián Ramírez Date: Wed, 20 Feb 2019 17:59:24 +0000 (+0400) Subject: :bookmark: Release 0.6.1: GraphQL X-Git-Tag: 0.6.1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4473e6a096ebdd3601147a970e5b7030838f5a0b;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.6.1: GraphQL --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 577c47e9fe..c4390bdd52 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,9 @@ ## Next +## 0.6.1 + +* Add docs for GraphQL: https://fastapi.tiangolo.com/tutorial/graphql/. PR #48. + ## 0.6.0 * Update SQL with SQLAlchemy tutorial at https://fastapi.tiangolo.com/tutorial/sql-databases/ using the new official `request.state`. PR #45. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index c9993150af..14dc6142a8 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -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