From: Sebastián Ramírez Date: Thu, 2 May 2024 22:50:18 +0000 (-0700) Subject: 🔖 Release version 0.111.0 X-Git-Tag: 0.111.0~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67da3bb52ebe79657380e2f1b9ba098cc95eca75;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.111.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 0206e3aaef..f5723ac99c 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -5,10 +5,10 @@ hide: # Release Notes -## 0.110.3 - ## Latest Changes +## 0.111.0 + ### Features * ✨ Add FastAPI CLI, the new `fastapi` command. PR [#11522](https://github.com/tiangolo/fastapi/pull/11522) by [@tiangolo](https://github.com/tiangolo). @@ -17,6 +17,8 @@ hide: * 🔧 Add configs and setup for `fastapi-slim` including optional extras `fastapi-slim[standard]`, and `fastapi` including by default the same `standard` extras. PR [#11503](https://github.com/tiangolo/fastapi/pull/11503) by [@tiangolo](https://github.com/tiangolo). +## 0.110.3 + ### Docs * 📝 Update references to Python version, FastAPI supports all the current versions, no need to make the version explicit. PR [#11496](https://github.com/tiangolo/fastapi/pull/11496) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 006c0ec5ad..04305ad8b1 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.111.0.dev1" +__version__ = "0.111.0" from starlette import status as status