🔖 Release version 0.37.0

This commit is contained in:
Sebastián Ramírez 2019-08-30 19:10:43 -05:00
parent 3799b9027e
commit 53da56146e
2 changed files with 3 additions and 1 deletions

View 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).

View 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