From deff2b6678ca7636683d814efe5dbec917910d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 30 Mar 2019 21:54:00 +0400 Subject: [PATCH] :bookmark: Release 0.10.3 --- docs/release-notes.md | 12 +++++++----- fastapi/__init__.py | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 70966d23..17534800 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,14 +1,16 @@ ## Next release +## 0.10.3 + +* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi +. PR #117. + +* Add docs about Extending OpenAPI. PR #126. + * Make Travis run Ubuntu Xenial (newer version) and Python 3.7 instead of Python 3.7-dev. PR #92 by @blueyed. * Fix duplicated param variable creation. PR #123 by @yihuang. -* Add docs about Extending OpenAPI. PR #126. - -* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi -. PR #117. - * Add note in Response Model docs about why using a function parameter instead of a function return type annotation. PR #109 by @JHSaunders. * Fix event docs (startup/shutdown) function name. PR #105 by @stratosgear. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 274a1e70..be0e8c68 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.10.2" +__version__ = "0.10.3" from starlette.background import BackgroundTasks