]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.31.0, upgrading Pydantic to 0.29 0.31.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 28 Jun 2019 15:01:04 +0000 (17:01 +0200)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 28 Jun 2019 15:01:04 +0000 (17:01 +0200)
docs/release-notes.md
fastapi/__init__.py

index 17b250b6fdd448ebd2f9e637ad4579d5267533ed..38d4b063a987c4ba13f057fb3972efb1e5061ba7 100644 (file)
@@ -1,5 +1,7 @@
 ## Latest changes
 
+## 0.31.0
+
 * Upgrade Pydantic supported version to `0.29.0`.
     * New supported version range is `"pydantic >=0.28,<=0.29.0"`.
     * This adds support for Pydantic [Generic Models](https://pydantic-docs.helpmanual.io/#generic-models), kudos to [@dmontagu](https://github.com/dmontagu).
index 0d2b224c7e391bc550aa83e6d38fe009da68e1f0..553c0b027872d9e68b9b5bf3581af5a596f4b071 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.30.1"
+__version__ = "0.31.0"
 
 from starlette.background import BackgroundTasks