From: Sebastián Ramírez Date: Fri, 28 Jun 2019 15:01:04 +0000 (+0200) Subject: :bookmark: Release 0.31.0, upgrading Pydantic to 0.29 X-Git-Tag: 0.31.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b30cca8e9e39461db35cea41967eb206dd51387d;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.31.0, upgrading Pydantic to 0.29 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 17b250b6fd..38d4b063a9 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 0d2b224c7e..553c0b0278 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -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