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