Browse Source

🔖 Release version 0.79.1

pull/4913/head 0.79.1
Sebastián Ramírez 3 years ago
parent
commit
ab8988ff7c
  1. 3
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py

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

@ -2,6 +2,9 @@
## Latest Changes
## 0.79.1
### Fixes
* 🐛 Fix `jsonable_encoder` using `include` and `exclude` parameters for non-Pydantic objects. PR [#2606](https://github.com/tiangolo/fastapi/pull/2606) by [@xaviml](https://github.com/xaviml).

2
fastapi/__init__.py

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

Loading…
Cancel
Save