]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.7.1, Raspberry Pi deployment and docs 0.7.1
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 4 Mar 2019 16:07:11 +0000 (20:07 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 4 Mar 2019 16:07:11 +0000 (20:07 +0400)
docs/release-notes.md
fastapi/__init__.py

index 9f6c90c79c192e46c159a7093ee7e1c5197ba346..0b30b4afe821561e28ac6596ed898ab5f6c17f6a 100644 (file)
@@ -1,5 +1,7 @@
 ## Next
 
+## 0.7.1
+
 * Update <a href="https://fastapi.tiangolo.com/async/#path-operation-functions" target="_blank">technical details about `async def` handling</a> with respect to previous frameworks. PR <a href="https://github.com/tiangolo/fastapi/pull/64" target="_blank">#64</a> by <a href="https://github.com/haizaar" target="_blank">@haizaar</a>.
 
 * Add <a href="https://fastapi.tiangolo.com/deployment/#raspberry-pi-and-other-architectures" target="_blank">deployment documentation for Docker in Raspberry Pi</a> and other architectures.
index c6b0e54403080822288b2ed87b9dcd6c75cc60ef..e019cc3fbb31d1bdca6598747080f882835ba412 100644 (file)
@@ -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