From: Sebastián Ramírez Date: Thu, 20 Jun 2019 10:32:24 +0000 (+0200) Subject: :bookmark: Release 0.30.0 X-Git-Tag: 0.30.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=76b6fd5c1880f39d13104574752f9890c636f5f4;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.30.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 4d5aaced13..2132e76d11 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 85da734559..ae7016f720 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -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