From: Sebastián Ramírez Date: Sat, 16 May 2020 19:00:28 +0000 (+0200) Subject: 🔖 Release 0.54.2 X-Git-Tag: 0.54.2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f7eea768f66780098a9be3e099201e464b84e9ff;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release 0.54.2 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index b9f0482aa7..9d060f7ebc 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest changes +## 0.54.2 + * Add translation to Spanish for [Concurrency and async / await - Concurrencia y async / await](https://fastapi.tiangolo.com/es/async/). PR [#1290](https://github.com/tiangolo/fastapi/pull/1290) by [@alvaropernas](https://github.com/alvaropernas). * Remove obsolete vote link. PR [#1289](https://github.com/tiangolo/fastapi/pull/1289) by [@donhui](https://github.com/donhui). * Allow disabling docs UIs by just disabling OpenAPI with `openapi_url=None`. New example in docs: [Advanced: Conditional OpenAPI](https://fastapi.tiangolo.com/advanced/conditional-openapi/). PR [#1421](https://github.com/tiangolo/fastapi/pull/1421). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 2c2612f2d1..cda5248efe 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.54.1" +__version__ = "0.54.2" from starlette import status