]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.14.0 0.14.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 12 Apr 2019 17:56:22 +0000 (21:56 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 12 Apr 2019 17:56:22 +0000 (21:56 +0400)
docs/release-notes.md
fastapi/__init__.py

index 18ed794ccb55af888ed1833820b4fc47dafa2e39..6e5ee8d028fda1d99728a535e31233afb154326e 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.14.0
+
 * Improve automatically generated names of path operations in OpenAPI (in API docs). A function `read_items` instead of having a generated name "Read Items Get" will have "Read Items". PR <a href="https://github.com/tiangolo/fastapi/pull/155" target="_blank">#155</a>.
 
 * Add docs for: <a href="https://fastapi.tiangolo.com/tutorial/testing/" target="_blank">Testing **FastAPI**</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/151" target="_blank">#151</a>.
index e77c674f0e45ecef24073c98f98b1f2429cbe369..033284a0bf3c55a6a8c61c907848e9000db6e9a8 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.13.0"
+__version__ = "0.14.0"
 
 from starlette.background import BackgroundTasks