From: Sebastián Ramírez Date: Sun, 11 Sep 2022 16:25:29 +0000 (+0200) Subject: 🔖 Release version 0.83.0 X-Git-Tag: 0.83.0~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ed0fcba7cbea46b0cca74e9fce568f9c7316d8e8;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.83.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index bea543c43c..63595da41f 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.83.0 + ### Features * ✨ Add support in `jsonable_encoder` for include and exclude with dataclasses. PR [#4923](https://github.com/tiangolo/fastapi/pull/4923) by [@DCsunset](https://github.com/DCsunset). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index c50543bf99..a9b44fc4a8 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.82.0" +__version__ = "0.83.0" from starlette import status as status