From: Sebastián Ramírez Date: Fri, 8 Feb 2019 12:09:48 +0000 (+0400) Subject: :bookmark: Release 0.2.0 X-Git-Tag: 0.2.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92c825be6a7362099400c9c3fe8b01ea13add3dc;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.2.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 5d1dea978a..2980e369cc 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 5e8e2bdf20..58b724c789 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