Browse Source

🔖 Release version 0.26.0

pull/275/head 0.26.0
Sebastián Ramírez 6 years ago
parent
commit
83b1a117cc
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -1,5 +1,7 @@
## Next release ## Next release
## 0.26.0
* Separate error handling for validation errors. * Separate error handling for validation errors.
* This will allow developers to customize the exception handlers. * This will allow developers to customize the exception handlers.
* Document better how to handle exceptions and use error handlers. * Document better how to handle exceptions and use error handlers.

2
fastapi/__init__.py

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

Loading…
Cancel
Save