From: Sebastián Ramírez Date: Fri, 7 May 2021 08:15:26 +0000 (+0200) Subject: 🔖 Release version 0.64.0 X-Git-Tag: 0.64.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a673211302e7ea269fa05e06775f76578851591;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.64.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 3e1de67092..92b704cedf 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.64.0 + ### Features * ✨ Add support for adding multiple `examples` in request bodies and path, query, cookie, and header params. New docs: [Declare Request Example Data](https://fastapi.tiangolo.com/tutorial/schema-extra-example/#body-with-multiple-examples). Initial PR [#1267](https://github.com/tiangolo/fastapi/pull/1267) by [@austinorr](https://github.com/austinorr). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index c0bb0e451b..332c5aaf77 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.63.0" +__version__ = "0.64.0" from starlette import status as status