]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.30.0 0.30.0
authorSebastián Ramírez <tiangolo@gmail.com>
Thu, 20 Jun 2019 10:32:24 +0000 (12:32 +0200)
committerSebastián Ramírez <tiangolo@gmail.com>
Thu, 20 Jun 2019 10:32:24 +0000 (12:32 +0200)
docs/release-notes.md
fastapi/__init__.py

index 4d5aaced130c7ccbab9be2e723db21abb2f4bf51..2132e76d110de34bf869c0f8aae139c35921f63a 100644 (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.
index 85da734559f21054f674959ee94e7f903a878faa..ae7016f7203d602240861ce803aff1f50f9258f4 100644 (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