From: Sebastián Ramírez Date: Fri, 29 Mar 2019 11:17:34 +0000 (+0400) Subject: :bookmark: Release 0.10.2 X-Git-Tag: 0.10.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=825f397918487430698bb64be84be0af55eb407a;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.10.2 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index f3059d72b7..826db1bb39 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.10.2 + * Fix OpenAPI (JSON Schema) for declarations of Python `Union` (JSON Schema `additionalProperties`). PR #121. * Update Background Tasks with a note on Celery. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 9c71e935c5..274a1e7092 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.10.1" +__version__ = "0.10.2" from starlette.background import BackgroundTasks