🔖 Release version 0.63.0

This commit is contained in:
Sebastián Ramírez 2020-12-20 20:16:12 +01:00
parent 180bdf31ac
commit e170c86412
2 changed files with 7 additions and 2 deletions

View File

@ -2,11 +2,16 @@
## Latest Changes
* ⬆️ Upgrade Uvicorn when installing fastapi[all] to the latest version including uvloop. PR [#2548](https://github.com/tiangolo/fastapi/pull/2548) by [@tiangolo](https://github.com/tiangolo).
## 0.63.0
### Features
* ✨ Improve type annotations, add support for mypy --strict, internally and for external packages. PR [#2547](https://github.com/tiangolo/fastapi/pull/2547) by [@tiangolo](https://github.com/tiangolo).
### Breaking changes
* ⬆️ Upgrade Uvicorn when installing `fastapi[all]` to the latest version including `uvloop`, the new range is `uvicorn[standard] >=0.12.0,<0.14.0`. PR [#2548](https://github.com/tiangolo/fastapi/pull/2548) by [@tiangolo](https://github.com/tiangolo).
### Fixes
* PR [#2547](https://github.com/tiangolo/fastapi/pull/2547) (read above) also fixes some false-positive mypy errors with `callbacks` parameters and when using the `OAuth2` class.

View File

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