Browse Source

🔖 Release version 0.45.0

pull/810/head 0.45.0
Sebastián Ramírez 5 years ago
parent
commit
c7c69586ae
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -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).

2
fastapi/__init__.py

@ -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

Loading…
Cancel
Save