From: Sebastián Ramírez Date: Sat, 30 Mar 2019 17:54:00 +0000 (+0400) Subject: :bookmark: Release 0.10.3 X-Git-Tag: 0.10.3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=deff2b6678ca7636683d814efe5dbec917910d7c;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.10.3 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 70966d2397..17534800a7 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 274a1e7092..be0e8c68ab 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