]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.21.0 0.21.0
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 15 May 2019 10:54:46 +0000 (14:54 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 15 May 2019 10:54:46 +0000 (14:54 +0400)
docs/release-notes.md
fastapi/__init__.py

index e341874653fd54a1771da1af0392d350ba8541e0..0c63c3c26363db72561184aa4c8693b02bba8a4c 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.21.0
+
 * On body parsing errors, raise `from` previous exception, to allow better introspection in logging code. PR [#192](https://github.com/tiangolo/fastapi/pull/195) by [@ricardomomm](https://github.com/ricardomomm).
 
 * Use Python logger named "`fastapi`" instead of root logger. PR [#222](https://github.com/tiangolo/fastapi/pull/222) by [@euri10](https://github.com/euri10).
index 3cf7a6613ae24626a935c3d1c99681e575ed7386..2c895c4c9d46ef2f029b15c1dadccfb2baadcfda 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.20.1"
+__version__ = "0.21.0"
 
 from starlette.background import BackgroundTasks