From: Sebastián Ramírez Date: Fri, 24 May 2019 18:48:27 +0000 (+0400) Subject: :bookmark: Release 0.24.0 X-Git-Tag: 0.24.0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67f8cb3b4f0e931547f016a701861aacfff2f424;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.24.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index e69d19d24f..6558d15180 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.24.0 + * Add support for WebSockets with dependencies and parameters. * Support included for: * `Depends` diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 25bb491a48..bc4edbe04d 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.23.0" +__version__ = "0.24.0" from starlette.background import BackgroundTasks