mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.60.2
This commit is contained in:
parent
1c9c80ba93
commit
79e08a2541
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
## Latest changes
|
||||
|
||||
## 0.60.2
|
||||
|
||||
* Fix typo in docs for query parameters. PR [#1832](https://github.com/tiangolo/fastapi/pull/1832) by [@ycd](https://github.com/ycd).
|
||||
* Add docs about [Async Tests](https://fastapi.tiangolo.com/advanced/async-tests/). PR [#1619](https://github.com/tiangolo/fastapi/pull/1619) by [@empicano](https://github.com/empicano).
|
||||
* Raise an exception when using form data (`Form`, `File`) without having `python-multipart` installed.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
||||
|
||||
__version__ = "0.60.1"
|
||||
__version__ = "0.60.2"
|
||||
|
||||
from starlette import status
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue