From 7863490c8c5eb22bf61341abfb4f941113ec1f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 12 Feb 2019 23:06:05 +0400 Subject: [PATCH] :bookmark: Release after SQLAlchemy fix: 0.3.0 --- docs/release-notes.md | 6 +++++- fastapi/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index e6a18a1ff..1cfac1e22 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,6 +1,10 @@ +## 0.3.0 + +* Fix/add SQLAlchemy support, including ORM, and update docs for SQLAlchemy: #30 + ## 0.2.1 -* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: #29. +* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: #29 ## 0.2.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 219ba67f9..79f23251e 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.2.1" +__version__ = "0.3.0" from .applications import FastAPI from .routing import APIRouter