mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.110.0
This commit is contained in:
parent
32b56a8d08
commit
e40747f10a
|
|
@ -7,6 +7,8 @@ hide:
|
|||
|
||||
## Latest Changes
|
||||
|
||||
## 0.110.0
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* 🐛 Fix unhandled growing memory for internal server errors, refactor dependencies with `yield` and `except` to require raising again as in regular Python. PR [#11191](https://github.com/tiangolo/fastapi/pull/11191) by [@tiangolo](https://github.com/tiangolo).
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
||||
|
||||
__version__ = "0.109.2"
|
||||
__version__ = "0.110.0"
|
||||
|
||||
from starlette import status as status
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue