From 92c825be6a7362099400c9c3fe8b01ea13add3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 8 Feb 2019 16:09:48 +0400 Subject: [PATCH] :bookmark: Release 0.2.0 --- docs/release-notes.md | 4 +++- fastapi/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 5d1dea978..2980e369c 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,7 +1,9 @@ -## Next +## 0.2.0 * Fix typos in Security section: #24 by @kkinder +* Add support for Pydantic custom JSON encoders: #21 by @euri10 + ## 0.1.19 * Upgrade Starlette version to the current latest `0.10.1`: #17 by @euri10 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 5e8e2bdf2..58b724c78 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.1.19" +__version__ = "0.2.0" from .applications import FastAPI from .routing import APIRouter