From cefe6cf92c77ebea5d7f4823ee17c64e3900c4fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 16 Apr 2019 23:28:13 +0400 Subject: [PATCH] :bookmark: Release version 0.16.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 12907b135..fe58ebd14 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.16.0 + * Upgrade *path operation* `doctsring` parsing to support proper Markdown descriptions. New documentation at Path Operation Configuration. PR #163. * Refactor internal usage of Pydantic to use correct data types. PR #164. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 8e3474ddf..fdf119382 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.15.0" +__version__ = "0.16.0" from starlette.background import BackgroundTasks