]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.10.1: support for encode/databases 0.10.1
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 25 Mar 2019 18:21:59 +0000 (22:21 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 25 Mar 2019 18:21:59 +0000 (22:21 +0400)
docs/release-notes.md
fastapi/__init__.py

index 8ddfce36d33f084c553c32f162f8c57dbb2095d7..1cd765c26367429581057e1c8c024025827d454c 100644 (file)
@@ -1,5 +1,9 @@
 ## Next release
 
+## 0.10.1
+
+* Add docs and tests for <a href="https://github.com/encode/databases" target="_blank">encode/databases</a>. New docs at: <a href="https://fastapi.tiangolo.com/tutorial/async-sql-databases/" target="_blank">Async SQL (Relational) Databases</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/107" target="_blank">#107</a>.
+
 ## 0.10.0
 
 * Add support for Background Tasks in *path operation functions* and dependencies. New documentation about <a href="https://fastapi.tiangolo.com/tutorial/background-tasks/" target="_blank">Background Tasks is here</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/103" target="_blank">#103</a>.
index 9269e53379fa92b00426cb8610754973b830d7df..9c71e935c5408b52ee44df73c539c6c9ccf750db 100644 (file)
@@ -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