From: Sebastián Ramírez Date: Fri, 4 Oct 2019 20:38:03 +0000 (-0500) Subject: :bookmark: Release 0.40.0 X-Git-Tag: 0.40.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdb6d43e103bcf7a7325d796e37c9435c9460e4c;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.40.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 508db79e9f..9491c7d3f8 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.40.0 + * Add notes to docs about installing `python-multipart` when using forms. PR [#574](https://github.com/tiangolo/fastapi/pull/574) by [@sliptonic](https://github.com/sliptonic). * Generate OpenAPI schemas in alphabetical order. PR [#554](https://github.com/tiangolo/fastapi/pull/554) by [@dmontagu](https://github.com/dmontagu). * Add support for truncating docstrings from *path operation functions*. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 4ab612254f..dd6fd0398e 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.39.0" +__version__ = "0.40.0" from starlette.background import BackgroundTasks