]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.47.1 0.47.1
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 18 Jan 2020 17:06:47 +0000 (18:06 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Sat, 18 Jan 2020 17:06:47 +0000 (18:06 +0100)
docs/release-notes.md
fastapi/__init__.py

index 8071b5da1d6134ebdb6ecea0ac69a04eb4cd1ca5..e9b8ae333725414ea939885c9cbee9a6a5cc1b13 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.47.1
+
 * Fix model filtering in `response_model`, cloning sub-models. PR [#889](https://github.com/tiangolo/fastapi/pull/889).
 * Fix FastAPI serialization of Pydantic models using ORM mode blocking the event loop. PR [#888](https://github.com/tiangolo/fastapi/pull/888).
 
index dfc99d104f162fa41872191ea1ff36c2808648c8..f5261586e1b5c048a725f900ed17c7db3bccb3a5 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.47.0"
+__version__ = "0.47.1"
 
 from starlette.background import BackgroundTasks