From 6a274d18b4c1c0a710429102a9e520d56d381c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 5 Apr 2019 20:08:36 +0400 Subject: [PATCH] :bookmark: Release 0.12.1, fix responses in include_router --- 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 c99dc29af..5d50cbe1c 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.12.1 + * Fix bug: handling additional `responses` in `APIRouter.include_router()`. PR #140. * Fix typo in SQL tutorial. PR #138 by @mostaphaRoudsari. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index c9387f0e0..5a4c9b971 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.12.0" +__version__ = "0.12.1" from starlette.background import BackgroundTasks