]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.2.0 0.2.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 8 Feb 2019 12:09:48 +0000 (16:09 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 8 Feb 2019 12:09:48 +0000 (16:09 +0400)
docs/release-notes.md
fastapi/__init__.py

index 5d1dea978a3c18861fd3c44fd58a643a5790b732..2980e369ccf658012985d45eaae179ebd68326c7 100644 (file)
@@ -1,7 +1,9 @@
-## Next
+## 0.2.0
 
 * Fix typos in Security section: <a href="https://github.com/tiangolo/fastapi/pull/24" target="_blank">#24</a> by <a href="https://github.com/kkinder" target="_blank">@kkinder</a>
 
+* Add support for Pydantic custom JSON encoders: <a href="https://github.com/tiangolo/fastapi/pull/21" target="_blank">#21</a> by <a href="https://github.com/euri10" target="_blank">@euri10</a>
+
 ## 0.1.19
 
 * Upgrade Starlette version to the current latest `0.10.1`: <a href="https://github.com/tiangolo/fastapi/pull/17" target="_blank">#17</a> by <a href="https://github.com/euri10" target="_blank">@euri10</a>
index 5e8e2bdf203c5c0767526e568dd160519b93557c..58b724c789c735f92583abb30426d64dfcd44a35 100644 (file)
@@ -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