From: Sebastián Ramírez Date: Tue, 16 Apr 2019 19:28:13 +0000 (+0400) Subject: :bookmark: Release version 0.16.0 X-Git-Tag: 0.16.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cefe6cf92c77ebea5d7f4823ee17c64e3900c4fb;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release version 0.16.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 12907b1357..fe58ebd147 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 8e3474ddf9..fdf1193829 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