]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.39.0 0.39.0
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 29 Sep 2019 22:17:44 +0000 (17:17 -0500)
committerSebastián Ramírez <tiangolo@gmail.com>
Sun, 29 Sep 2019 22:17:44 +0000 (17:17 -0500)
docs/release-notes.md
fastapi/__init__.py

index 108902bf2deb89ddf2061ddb10ed26d2e0101ed9..7f7ccb45e4b52c7c9fbdcc63e595ef870d72f200 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.39.0
+
 * Allow path parameters to have default values (e.g. `None`) and discard them instead of raising an error.
     * This allows declaring a parameter like `user_id: str = None` that can be taken from a query parameter, but the same path operation can be included in a router with a path `/users/{user_id}`, in which case will be taken from the path and will be required.
     * PR [#464](https://github.com/tiangolo/fastapi/pull/464) by [@jonathanunderwood](https://github.com/jonathanunderwood).
index a3117fb999a8cd4e8ad6b34c2faf645df39952ad..4ab612254feb00fce463b9c34f58dbd9d6d80840 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.38.1"
+__version__ = "0.39.0"
 
 from starlette.background import BackgroundTasks