🔖 Release 0.30.0

This commit is contained in:
Sebastián Ramírez 2019-06-20 12:32:24 +02:00
parent a2fb716035
commit 76b6fd5c18
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Latest changes
## 0.30.0
* Add support for Pydantic's ORM mode:
* Updated documentation about SQL with SQLAlchemy, using Pydantic models with ORM mode, SQLAlchemy models with relations, separation of files, simplification of code and other changes. New docs: [SQL (Relational) Databases](https://fastapi.tiangolo.com/tutorial/sql-databases/).
* The new support for ORM mode fixes issues/adds features related to ORMs with lazy-loading, hybrid properties, dynamic/getters (using `@property` decorators) and several other use cases.

View File

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