]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.37.0 0.37.0
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 31 Aug 2019 00:10:43 +0000 (19:10 -0500)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 31 Aug 2019 00:10:43 +0000 (19:10 -0500)
docs/release-notes.md
fastapi/__init__.py

index 1138c0db688aff48d2f0a85812f1edffb8caebc0..3857aec4c0cb7400204c8098c9fa640257462c5a 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.37.0
+
 * Add support for custom route classes for advanced use cases. PR [#468](https://github.com/tiangolo/fastapi/pull/468) by [@dmontagu](https://github.com/dmontagu).
 * Allow disabling Google fonts in ReDoc. PR [#481](https://github.com/tiangolo/fastapi/pull/481) by [@b1-luettje](https://github.com/b1-luettje).
 * Fix security issue: when returning a sub-class of a response model and using `skip_defaults` it could leak information. PR [#485](https://github.com/tiangolo/fastapi/pull/485) by [@dmontagu](https://github.com/dmontagu).
index 04d1406f2e5afd696cdde1e2b5ec561d0b8ab4b7..393243f7f37d3abf5d53a3be720630c55ea50aaa 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.36.0"
+__version__ = "0.37.0"
 
 from starlette.background import BackgroundTasks