From 6bf3ab3b7aa84b0f4c766284a84fcb9137493ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 12 Jul 2019 19:01:27 -0500 Subject: [PATCH] :bookmark: Release 0.33.0, including Pydantic 0.30.0 --- docs/release-notes.md | 2 ++ fastapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 74ac80052..54a24c5eb 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 963ca8fd4..3649d81e3 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