From: Sebastián Ramírez Date: Wed, 21 Jul 2021 18:00:39 +0000 (+0200) Subject: 🔖 Release version 0.67.0 X-Git-Tag: 0.67.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0209a0d2c26628809fd885a4c211c6248082921;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.67.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index b8e3c5841c..e35d6f3c48 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.67.0 + ### Features * ✨ Add support for `dataclasses` in request bodies and `response_model`. New documentation: [Advanced User Guide - Using Dataclasses](https://fastapi.tiangolo.com/advanced/dataclasses/). PR [#3577](https://github.com/tiangolo/fastapi/pull/3577) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 7ae93ef8c5..61737d47f0 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.66.1" +__version__ = "0.67.0" from starlette import status as status