From: Sebastián Ramírez Date: Fri, 19 Apr 2024 00:31:47 +0000 (-0500) Subject: 🔖 Release version 0.110.2 X-Git-Tag: 0.110.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be1e3faa63bd6785399d6cd98dbc8417ddd045dc;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.110.2 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 6c346ee764..8bba785ce4 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.110.2 + ### Fixes * 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic `UndefinedType`. PR [#9929](https://github.com/tiangolo/fastapi/pull/9929) by [@arjwilliams](https://github.com/arjwilliams). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 5a77101fb7..f286577121 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.110.1" +__version__ = "0.110.2" from starlette import status as status