From 1f03e85f06aa71ad1704a56d56b734fbac5a016f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 2 Mar 2019 22:33:48 +0400 Subject: [PATCH] :bookmark: Release 0.6.4 --- docs/release-notes.md | 2 ++ fastapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 3fe0221d4..d140ce527 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next +## 0.6.4 + * Add technical details about `async def` handling to docs. PR #61. * Add docs for Debugging FastAPI applications in editors. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 6cea2d212..0f5eadabf 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.3" +__version__ = "0.6.4" from .applications import FastAPI from .routing import APIRouter