🔖 Release version 0.45.0

This commit is contained in:
Sebastián Ramírez 2019-12-11 18:05:19 +01:00
parent 4e09feda9e
commit c7c69586ae
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Latest changes
## 0.45.0
* Add support for OpenAPI Callbacks:
* New docs: [OpenAPI Callbacks](https://fastapi.tiangolo.com/tutorial/openapi-callbacks/).
* Refactor generation of `operationId`s to be valid Python names (also valid variables in most languages).

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.44.1"
__version__ = "0.45.0"
from starlette.background import BackgroundTasks