mirror of https://github.com/tiangolo/fastapi.git
🔖 Release after SQLAlchemy fix: 0.3.0
This commit is contained in:
parent
955e9fcb31
commit
7863490c8c
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue