]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🔖 Release version 0.71.0 0.71.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 7 Jan 2022 17:07:59 +0000 (18:07 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 7 Jan 2022 17:07:59 +0000 (18:07 +0100)
docs/en/docs/release-notes.md
fastapi/__init__.py

index 02e2c88799b6f24229b8d52bd3a4333f7776c6d4..01df3126722206d40aa9a22be0ac954add18e31f 100644 (file)
@@ -2,11 +2,21 @@
 
 ## Latest Changes
 
+## 0.71.0
+
+### Features
+
+* ✨ Add docs and tests for Python 3.9 and Python 3.10. PR [#3712](https://github.com/tiangolo/fastapi/pull/3712) by [@tiangolo](https://github.com/tiangolo).
+    * You can start with [Python Types Intro](https://fastapi.tiangolo.com/python-types/), it explains what changes between different Python versions, in Python 3.9 and in Python 3.10.
+    * All the FastAPI docs are updated. Each code example in the docs that could use different syntax in Python 3.9 or Python 3.10 now has all the alternatives in tabs.
+* ⬆️ Upgrade Starlette to 0.17.1. PR [#4145](https://github.com/tiangolo/fastapi/pull/4145) by [@simondale00](https://github.com/simondale00).
+
+### Internal
+
 * 👥 Update FastAPI People. PR [#4354](https://github.com/tiangolo/fastapi/pull/4354) by [@github-actions[bot]](https://github.com/apps/github-actions).
 * 🔧 Add FastAPI Trove Classifier for PyPI as now there's one 🤷😁. PR [#4386](https://github.com/tiangolo/fastapi/pull/4386) by [@tiangolo](https://github.com/tiangolo).
-* ✨ Add docs and tests for Python 3.9 and Python 3.10. PR [#3712](https://github.com/tiangolo/fastapi/pull/3712) by [@tiangolo](https://github.com/tiangolo).
 * ⬆ Upgrade MkDocs Material and configs. PR [#4385](https://github.com/tiangolo/fastapi/pull/4385) by [@tiangolo](https://github.com/tiangolo).
-* ⬆️ Upgrade Starlette to 0.17.1. PR [#4145](https://github.com/tiangolo/fastapi/pull/4145) by [@simondale00](https://github.com/simondale00).
+
 ## 0.70.1
 
 There's nothing interesting in this particular FastAPI release. It is mainly to enable/unblock the release of the next version of Pydantic that comes packed with features and improvements. 🤩
index 8bb6ce15bc0ffe86c891726d7044a9e881a67ab1..5b735aed514c9ad27a446a8d36378627be756617 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.70.1"
+__version__ = "0.71.0"
 
 from starlette import status as status