]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.36.0 0.36.0
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 26 Aug 2019 13:28:33 +0000 (08:28 -0500)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 26 Aug 2019 13:28:33 +0000 (08:28 -0500)
docs/release-notes.md
fastapi/__init__.py

index f8bc57af7945db5653c05b09ae27eb696c23cd9d..155e70bec3566d44cb7f763dd4cc100eb6c7b7b7 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.36.0
+
 * Fix implementation for `skip_defaults` when returning a Pydantic model. PR [#422](https://github.com/tiangolo/fastapi/pull/422) by [@dmontagu](https://github.com/dmontagu).
 * Fix OpenAPI generation when using the same dependency in multiple places for the same *path operation*. PR [#417](https://github.com/tiangolo/fastapi/pull/417) by [@dmontagu](https://github.com/dmontagu).
 * Allow having empty paths in *path operations* used with `include_router` and a `prefix`.
index 3a422824bdc24e54d0990926654013dfec4629f2..04d1406f2e5afd696cdde1e2b5ec561d0b8ab4b7 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.35.0"
+__version__ = "0.36.0"
 
 from starlette.background import BackgroundTasks