From: Sebastián Ramírez Date: Fri, 12 Apr 2019 17:56:22 +0000 (+0400) Subject: :bookmark: Release 0.14.0 X-Git-Tag: 0.14.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08484603ee351d1b72eaa0053bf7ae7231e30e3c;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.14.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 18ed794ccb..6e5ee8d028 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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 #155. * Add docs for: Testing **FastAPI**. PR #151. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index e77c674f0e..033284a0bf 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.13.0" +__version__ = "0.14.0" from starlette.background import BackgroundTasks