From 9484f939ed9c27022352e295ea053310fc343a8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 12 Feb 2019 21:46:35 +0400 Subject: [PATCH] :bookmark: Bump version, after fix, release --- docs/release-notes.md | 4 ++++ fastapi/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 2980e369cc..e6a18a1ffc 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,7 @@ +## 0.2.1 + +* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: #29. + ## 0.2.0 * Fix typos in Security section: #24 by @kkinder diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 58b724c789..219ba67f95 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.0" +__version__ = "0.2.1" from .applications import FastAPI from .routing import APIRouter -- 2.47.3