From: Sebastián Ramírez Date: Sat, 2 Mar 2019 18:33:48 +0000 (+0400) Subject: :bookmark: Release 0.6.4 X-Git-Tag: 0.6.4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f03e85f06aa71ad1704a56d56b734fbac5a016f;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.6.4 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 3fe0221d46..d140ce5278 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 6cea2d2120..0f5eadabfd 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