From: Sebastián Ramírez Date: Tue, 23 Aug 2022 14:14:48 +0000 (+0200) Subject: 🔖 Release version 0.80.0 X-Git-Tag: 0.80.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d6e70791d0d4c5cf271bcd231ba78d1a3c0f582;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.80.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 524da6f42f..fc48bf7dde 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.80.0 + ### Breaking Changes - Fixes * 🐛 Fix `response_model` not invalidating `None`. PR [#2725](https://github.com/tiangolo/fastapi/pull/2725) by [@hukkin](https://github.com/hukkin). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index abcb219a99..3dc86cadf0 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.79.1" +__version__ = "0.80.0" from starlette import status as status