From 4473e6a096ebdd3601147a970e5b7030838f5a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 20 Feb 2019 21:59:24 +0400 Subject: [PATCH] :bookmark: Release 0.6.1: GraphQL --- docs/release-notes.md | 4 ++++ fastapi/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 577c47e9f..c4390bdd5 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 c9993150a..14dc6142a 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