From 7244e4b61290742993e55caaf6f334634e7a9503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 6 Jun 2019 14:31:50 +0400 Subject: [PATCH] :bookmark: Release version 0.29.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 0d9185621..4c475f79a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.29.0 + * Add support for declaring a `Response` parameter: * This allows declaring: * [Response Cookies](https://fastapi.tiangolo.com/tutorial/response-cookies/). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 308fe5b3b..8199c879a 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.28.0" +__version__ = "0.29.0" from starlette.background import BackgroundTasks