Browse Source

Merge branch 'master' into translate-zh-update-outdated-09cd969c

pull/14843/head
Motov Yurii 5 months ago
committed by GitHub
parent
commit
672f06d6c2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      docs/en/docs/release-notes.md
  2. 2
      docs/en/mkdocs.yml
  3. 2
      fastapi/__init__.py
  4. 2
      scripts/docs.py

3
docs/en/docs/release-notes.md

@ -7,6 +7,8 @@ hide:
## Latest Changes
## 0.128.2
### Features
* ✨ Add support for PEP695 `TypeAliasType`. PR [#13920](https://github.com/fastapi/fastapi/pull/13920) by [@cstruct](https://github.com/cstruct).
@ -23,6 +25,7 @@ hide:
### Translations
* 🌐 Enable Traditional Chinese translations. PR [#14842](https://github.com/fastapi/fastapi/pull/14842) by [@tiangolo](https://github.com/tiangolo).
* 🌐 Enable French docs translations. PR [#14841](https://github.com/fastapi/fastapi/pull/14841) by [@tiangolo](https://github.com/tiangolo).
* 🌐 Update translations for fr (translate-page). PR [#14837](https://github.com/fastapi/fastapi/pull/14837) by [@tiangolo](https://github.com/tiangolo).
* 🌐 Update translations for de (update-outdated). PR [#14836](https://github.com/fastapi/fastapi/pull/14836) by [@tiangolo](https://github.com/tiangolo).

2
docs/en/mkdocs.yml

@ -331,6 +331,8 @@ extra:
name: tr - Türkçe
- link: /uk/
name: uk - українська мова
- link: /zh-hant/
name: zh-hant - 繁體中文
extra_css:
- css/termynal.css
- css/custom.css

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.128.1"
__version__ = "0.128.2"
from starlette import status as status

2
scripts/docs.py

@ -31,7 +31,7 @@ SUPPORTED_LANGS = {
"tr",
"uk",
# "zh",
# "zh-hant",
"zh-hant",
}

Loading…
Cancel
Save