From: Sebastián Ramírez Date: Fri, 28 Jun 2019 07:39:29 +0000 (+0200) Subject: :bookmark: Release 0.30.1 X-Git-Tag: 0.30.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54368e7b229d16a5e10ee790009cb78f1d58c9c7;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.30.1 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 46aad868f5..2d712b5924 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.30.1 + * Add section in docs about [External Links and Articles](https://fastapi.tiangolo.com/external-links/). PR [#341](https://github.com/tiangolo/fastapi/pull/341). * Remove `Pipfile.lock` from the repository as it is only used by FastAPI contributors (developers of FastAPI itself). See the PR for more details. PR [#340](https://github.com/tiangolo/fastapi/pull/340). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index ae7016f720..0d2b224c7e 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.30.0" +__version__ = "0.30.1" from starlette.background import BackgroundTasks