]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Tweak release notes
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 18 Mar 2023 19:37:20 +0000 (20:37 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 18 Mar 2023 19:37:20 +0000 (20:37 +0100)
docs/en/docs/release-notes.md

index 3a196623af21b631e2d75821e81a66f08b231e8b..e5fccd0e4afb85e3fac5de2a930cdc91c969f596 100644 (file)
@@ -85,7 +85,7 @@ def delete_item(user: CurrentUser, item_id: int):
 
 ...and `CurrentUser` has all the typing information as `User`, so your editor will work as expected (autocompletion and everything), and **FastAPI** will be able to understand the dependency defined in `Annotated`. 😎
 
-Roughly **all the docs** have been rewritten to use `Annotated` as the main way to declare **parameters** and **dependencies**. All the **examples** in the docs now include a version with `Annotated` and a version without it, for each of the specific Python version (when there are small differences/improvements in more recent versions).
+Roughly **all the docs** have been rewritten to use `Annotated` as the main way to declare **parameters** and **dependencies**. All the **examples** in the docs now include a version with `Annotated` and a version without it, for each of the specific Python versions (when there are small differences/improvements in more recent versions). There were around 23K new lines added between docs, examples, and tests. 🚀
 
 The key updated docs are: