]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.44.0, with support for Pydantic v1 and above! :tada: 0.44.0
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 27 Nov 2019 21:16:29 +0000 (22:16 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 27 Nov 2019 21:16:29 +0000 (22:16 +0100)
docs/release-notes.md
fastapi/__init__.py

index dd3c9817d2d19ef2eee3197a7a278a5ecf63d1cb..6a122bacc5675798b501d4abb39fc941b9d33a1f 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.44.0
+
 * Add GitHub action [Issue Manager](https://github.com/tiangolo/issue-manager). PR [#742](https://github.com/tiangolo/fastapi/pull/742).
 * Fix typos in docs. PR [734](https://github.com/tiangolo/fastapi/pull/734) by [@bundabrg](https://github.com/bundabrg).
 * Fix usage of `custom_encoder` in `jsonable_encoder`. PR [#715](https://github.com/tiangolo/fastapi/pull/715) by [@matrixise](https://github.com/matrixise).
index 21bba998781885539b90a33084ad736c00630aad..e838698760c40d8d207768bc123ea25e0c043489 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.43.0"
+__version__ = "0.44.0"
 
 from starlette.background import BackgroundTasks