diff --git a/docs/release-notes.md b/docs/release-notes.md index 8ddfce36d..1cd765c26 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,9 @@ ## Next release +## 0.10.1 + +* Add docs and tests for encode/databases. New docs at: Async SQL (Relational) Databases. PR #107. + ## 0.10.0 * Add support for Background Tasks in *path operation functions* and dependencies. New documentation about Background Tasks is here. PR #103. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 9269e5337..9c71e935c 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.0" +__version__ = "0.10.1" from starlette.background import BackgroundTasks