From: Sebastián Ramírez Date: Mon, 4 Mar 2019 16:07:11 +0000 (+0400) Subject: :bookmark: Release 0.7.1, Raspberry Pi deployment and docs X-Git-Tag: 0.7.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac2b18bf40c3b24ae5f7998d236a342f2888f9ff;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.7.1, Raspberry Pi deployment and docs --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 9f6c90c79c..0b30b4afe8 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next +## 0.7.1 + * Update technical details about `async def` handling with respect to previous frameworks. PR #64 by @haizaar. * Add deployment documentation for Docker in Raspberry Pi and other architectures. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index c6b0e54403..e019cc3fbb 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.7.0" +__version__ = "0.7.1" from .applications import FastAPI from .routing import APIRouter