From: Sebastián Ramírez Date: Sat, 23 May 2020 16:59:02 +0000 (+0200) Subject: 🔖 Release version 0.55.1 X-Git-Tag: 0.55.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d844bc5cff051cdcef533d811204beb5aedf2f3;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.55.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 40ddf94908..618eaafd1d 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest changes +## 0.55.1 + * Fix handling of enums with their own schema in path parameters. To support [samuelcolvin/pydantic#1432](https://github.com/samuelcolvin/pydantic/pull/1432) in FastAPI. PR [#1463](https://github.com/tiangolo/fastapi/pull/1463). ## 0.55.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 3566b321d1..eb083ec0e4 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.55.0" +__version__ = "0.55.1" from starlette import status