From: Sebastián Ramírez Date: Fri, 12 Jun 2020 23:17:06 +0000 (+0200) Subject: 🔖 Release version 0.56.1 X-Git-Tag: 0.56.1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8231fbede410ae2eab18b3dd18afc8f74a71f84d;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.56.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 8d6ea33508..ff1e5606d5 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest changes +## 0.56.1 + * Add link to advanced docs from tutorial. PR [#1512](https://github.com/tiangolo/fastapi/pull/1512) by [@kx-chen](https://github.com/kx-chen). * Remove internal unnecessary f-strings. PR [#1526](https://github.com/tiangolo/fastapi/pull/1526) by [@kotamatsuoka](https://github.com/kotamatsuoka). * Add translation to Chinese for [Query Parameters and String Validations - 查询参数和字符串校验](https://fastapi.tiangolo.com/zh/tutorial/query-params-str-validations/). PR [#1500](https://github.com/tiangolo/fastapi/pull/1500) by [@waynerv](https://github.com/waynerv). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index a0244bfaf5..8e56f22b44 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.56.0" +__version__ = "0.56.1" from starlette import status