]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Bump version, after fix, release 0.2.1
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 17:46:35 +0000 (21:46 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 17:46:35 +0000 (21:46 +0400)
docs/release-notes.md
fastapi/__init__.py

index 2980e369ccf658012985d45eaae179ebd68326c7..e6a18a1ffc3d0ba702a69b916bba0983efdc3f88 100644 (file)
@@ -1,3 +1,7 @@
+## 0.2.1
+
+* Fix `jsonable_encoder` for Pydantic models with `Config` but without `json_encoders`: <a href="https://github.com/tiangolo/fastapi/pull/29" target="_blank">#29</a>.
+
 ## 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>
index 58b724c789c735f92583abb30426d64dfcd44a35..219ba67f95e8b93bfe2f6ceb0ee13b7ed98e025b 100644 (file)
@@ -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