From 08484603ee351d1b72eaa0053bf7ae7231e30e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 12 Apr 2019 21:56:22 +0400 Subject: [PATCH] :bookmark: Release 0.14.0 --- docs/release-notes.md | 2 ++ fastapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 18ed794cc..6e5ee8d02 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 e77c674f0..033284a0b 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