From e620aeb46d8fc832c170d829e3d1c9f62d819b76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 12 Jul 2019 18:32:30 -0500 Subject: [PATCH] :bookmark: Release 0.32.0, as PR ##347 might be a breaking change in some specific cases --- docs/release-notes.md | 2 +- fastapi/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 3297e460c..af1d122ef 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,6 +1,6 @@ ## Latest changes -## 0.31.1 +## 0.32.0 * Fix typo in docs for features. PR [#380](https://github.com/tiangolo/fastapi/pull/380) by [@MartinoMensio](https://github.com/MartinoMensio). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 65137d599..963ca8fd4 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.31.1" +__version__ = "0.32.0" from starlette.background import BackgroundTasks