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 | 10 ++++++---- fastapi/__init__.py | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 70966d239..17534800a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,13 +1,15 @@ ## Next release -* Make Travis run Ubuntu Xenial (newer version) and Python 3.7 instead of Python 3.7-dev. PR #92 by @blueyed. +## 0.10.3 -* Fix duplicated param variable creation. PR #123 by @yihuang. +* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi +. PR #117. * Add docs about Extending OpenAPI. PR #126. -* Add Gitter chat, badge, links, etc. https://gitter.im/tiangolo/fastapi -. PR #117. +* 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 note in Response Model docs about why using a function parameter instead of a function return type annotation. PR #109 by @JHSaunders. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 274a1e709..be0e8c68a 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