Browse Source

🔖 Release version 0.54.0

pull/1222/head 0.54.0
Sebastián Ramírez 5 years ago
parent
commit
7372f6ba11
  1. 2
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/en/docs/release-notes.md

@ -2,6 +2,8 @@
## Latest changes
## 0.54.0
* Fix grammatical mistakes in async docs. PR [#1188](https://github.com/tiangolo/fastapi/pull/1188) by [@mickeypash](https://github.com/mickeypash).
* Add support for `response_model_exclude_defaults` and `response_model_exclude_none`:
* Deprecate the parameter `include_none` in `jsonable_encoder` and add the inverted `exclude_none`, to keep in sync with Pydantic.

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.53.2"
__version__ = "0.54.0"
from starlette import status

Loading…
Cancel
Save