From: Sebastián Ramírez Date: Mon, 25 Mar 2019 18:21:59 +0000 (+0400) Subject: :bookmark: Release 0.10.1: support for encode/databases X-Git-Tag: 0.10.1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0f7961b65a8c3e1135d0151c435c3cf4a349359;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.10.1: support for encode/databases --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 8ddfce36d3..1cd765c263 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 9269e53379..9c71e935c5 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