From: Sebastián Ramírez Date: Sat, 13 Jul 2019 00:01:27 +0000 (-0500) Subject: :bookmark: Release 0.33.0, including Pydantic 0.30.0 X-Git-Tag: 0.33.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bf3ab3b7aa84b0f4c766284a84fcb9137493ff8;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.33.0, including Pydantic 0.30.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 74ac800528..54a24c5eb0 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.33.0 + * Upgrade Pydantic version to `0.30.0`. PR [#384](https://github.com/tiangolo/fastapi/pull/384) by [@jekirl](https://github.com/jekirl). ## 0.32.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 963ca8fd48..3649d81e3a 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.32.0" +__version__ = "0.33.0" from starlette.background import BackgroundTasks