From ac2b18bf40c3b24ae5f7998d236a342f2888f9ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 4 Mar 2019 20:07:11 +0400 Subject: [PATCH] :bookmark: Release 0.7.1, Raspberry Pi deployment and docs --- 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 9f6c90c79..0b30b4afe 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 c6b0e5440..e019cc3fb 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