From: Sebastián Ramírez Date: Fri, 12 Jul 2019 23:30:54 +0000 (-0500) Subject: :bookmark: Release 0.31.1 X-Git-Tag: 0.32.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1e2e46b80eb81308d3ddaf69ab484eab34aca45;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.31.1 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 9718446930..3297e460c7 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.31.1 + * Fix typo in docs for features. PR [#380](https://github.com/tiangolo/fastapi/pull/380) by [@MartinoMensio](https://github.com/MartinoMensio). * Fix source code `limit` for example in [Query Parameters](https://fastapi.tiangolo.com/tutorial/query-params/). PR [#366](https://github.com/tiangolo/fastapi/pull/366) by [@Smashman](https://github.com/Smashman). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 553c0b0278..65137d599f 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.0" +__version__ = "0.31.1" from starlette.background import BackgroundTasks