diff --git a/docs/release-notes.md b/docs/release-notes.md index f3059d72b..826db1bb3 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 9c71e935c..274a1e709 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