From: Sebastián Ramírez Date: Sat, 31 Aug 2019 00:10:43 +0000 (-0500) Subject: :bookmark: Release version 0.37.0 X-Git-Tag: 0.37.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=53da56146ec5c2933b9844d7a1f9fd910b31158c;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release version 0.37.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 1138c0db68..3857aec4c0 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 04d1406f2e..393243f7f3 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -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