]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.28.0
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 5 Jun 2019 17:13:32 +0000 (21:13 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 5 Jun 2019 17:13:32 +0000 (21:13 +0400)
docs/release-notes.md
fastapi/__init__.py

index b457f85d0f64c9d91201c4bbb16c15d3a06cdea1..f5eaa3c355673488abcc27c1e639bc6d38f41a18 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.28.0
+
 * Implement dependency cache per request.
     * This avoids calling each dependency multiple times for the same request.
     * This is useful while calling external services, performing costly computation, etc.
index a7f60239201bc6804d06bb09630aa3471ee50af5..308fe5b3ba1ab94fd2a23d6ed9d9e52e8fa5c1b7 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.27.2"
+__version__ = "0.28.0"
 
 from starlette.background import BackgroundTasks