]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release after SQLAlchemy fix: 0.3.0
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 19:06:05 +0000 (23:06 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 19:06:05 +0000 (23:06 +0400)
docs/release-notes.md
fastapi/__init__.py

index e6a18a1ffc3d0ba702a69b916bba0983efdc3f88..1cfac1e22c3f6b05763a1cbff96e24c4effd69b5 100644 (file)
@@ -1,6 +1,10 @@
+## 0.3.0
+
+* Fix/add SQLAlchemy support, including ORM, and update docs for SQLAlchemy: <a href="https://github.com/tiangolo/fastapi/pull/30" target="_blank">#30</a>
+
 ## 0.2.1
 
-* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: <a href="https://github.com/tiangolo/fastapi/pull/29" target="_blank">#29</a>.
+* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: <a href="https://github.com/tiangolo/fastapi/pull/29" target="_blank">#29</a>
 
 ## 0.2.0
 
index 219ba67f95e8b93bfe2f6ceb0ee13b7ed98e025b..79f23251e0b523edccdc22dbf9902d4c60bc78c5 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.2.1"
+__version__ = "0.3.0"
 
 from .applications import FastAPI
 from .routing import APIRouter