Browse Source

🔖 Release version 0.29.0

pull/306/head 0.29.0
Sebastián Ramírez 6 years ago
parent
commit
7244e4b612
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -1,5 +1,7 @@
## Latest changes
## 0.29.0
* Add support for declaring a `Response` parameter:
* This allows declaring:
* [Response Cookies](https://fastapi.tiangolo.com/tutorial/response-cookies/).

2
fastapi/__init__.py

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

Loading…
Cancel
Save