From: Sebastián Ramírez Date: Wed, 9 Jun 2021 08:17:27 +0000 (+0200) Subject: 🔖 Release version 0.65.2 X-Git-Tag: 0.65.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d91f978d265a5050baeb3d4b3618c2f5cb7995a;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.65.2 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 5e77d87db1..bd7e2b2705 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -3,6 +3,8 @@ ## Latest Changes +## 0.65.2 + ### Security fixes * 🔒 Check Content-Type request header before assuming JSON. Initial PR [#2118](https://github.com/tiangolo/fastapi/pull/2118) by [@patrickkwang](https://github.com/patrickkwang). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 80f61d9f44..d04f2ea960 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.65.1" +__version__ = "0.65.2" from starlette import status as status