[Doc] Update community contributors and versioning naming to follow vLLM (#5820)

### What this PR does / why we need it?

This pull request updates documentation to align with vLLM's community
standards.
- Change `Maintainers` to `Committers` to follow vLLM naming:
https://docs.vllm.ai/en/latest/governance/committers/
- Change release branch policy from `vX.Y.Z-dev` to `releases/vX.Y.Z`

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
doc ci passed
- vLLM version: v0.13.0
- vLLM main:
2f4e6548ef

Signed-off-by: Yikun Jiang <yikunkero@gmail.com>
This commit is contained in:
Yikun Jiang
2026-01-13 08:47:11 +08:00
committed by GitHub
parent c8a324ab73
commit fe251a2efe
4 changed files with 12 additions and 12 deletions

View File

@@ -68,7 +68,7 @@ We welcome and value any contributions and collaborations:
vllm-ascend has main branch and dev branch. vllm-ascend has main branch and dev branch.
- **main**: main branchcorresponds to the vLLM main branch, and is continuously monitored for quality through Ascend CI. - **main**: main branchcorresponds to the vLLM main branch, and is continuously monitored for quality through Ascend CI.
- **vX.Y.Z-dev**: development branch, created with part of new releases of vLLM. For example, `v0.7.3-dev` is the dev branch for vLLM `v0.7.3` version. - **releases/vX.Y.Z**: development branch, created with part of new releases of vLLM. For example, `releases/v0.13.0` is the dev branch for vLLM `v0.13.0` version.
Below is maintained branches: Below is maintained branches:

View File

@@ -68,7 +68,7 @@ vLLM 昇腾插件 (`vllm-ascend`) 是一个由社区维护的让vLLM在Ascend NP
vllm-ascend有主干分支和开发分支 vllm-ascend有主干分支和开发分支
- **main**: 主干分支与vLLM的主干分支对应并通过昇腾CI持续进行质量看护 - **main**: 主干分支与vLLM的主干分支对应并通过昇腾CI持续进行质量看护
- **vX.Y.Z-dev**: 开发分支随vLLM部分新版本发布而创建比如`v0.7.3-dev`是vllm-asend针对vLLM `v0.7.3`版本的开发分支 - **releases/vX.Y.Z**: 开发分支随vLLM部分新版本发布而创建比如`releases/v0.13.0`是vllm-asend针对vLLM `v0.13.0` 版本的开发分支
下面是维护中的分支 下面是维护中的分支

View File

@@ -1,6 +1,6 @@
# Maintainers and Contributors # Committers and Contributors
## Maintainers ## Committers
| Name | Github ID | Date | | Name | Github ID | Date |
|:-----------:|:-----:|:-----:| |:-----------:|:-----:|:-----:|

View File

@@ -89,7 +89,7 @@ For main branch of vLLM Ascend, we usually make it compatible with the latest vL
vLLM Ascend includes two branches: main and dev. vLLM Ascend includes two branches: main and dev.
- **main**: corresponds to the vLLM main branch and latest 1 or 2 release version. It is continuously monitored for quality through Ascend CI. - **main**: corresponds to the vLLM main branch and latest 1 or 2 release version. It is continuously monitored for quality through Ascend CI.
- **vX.Y.Z-dev**: development branch, created with part of new releases of vLLM. For example, `v0.7.3-dev` is the dev branch for vLLM `v0.7.3` version. - **releases/vX.Y.Z**: development branch, created with part of new releases of vLLM. For example, `releases/v0.13.0` is the dev branch for vLLM `v0.13.0` version.
Commits should typically be merged into the main branch first, and only then backported to the dev branch, to reduce maintenance costs as much as possible. Commits should typically be merged into the main branch first, and only then backported to the dev branch, to reduce maintenance costs as much as possible.
@@ -104,7 +104,7 @@ The table below lists branch states.
### Branch states ### Branch states
Note that vLLM Ascend will only be released for a certain vLLM release version, not for every version. Hence, you may notice that some versions have corresponding dev branches (e.g. `0.7.1-dev` and `0.7.3-dev` ), while others do not (e.g. `0.7.2-dev`). Note that vLLM Ascend will only be released for a certain vLLM release version, not for every version. Hence, you may notice that some versions have corresponding dev branches (e.g. `releases/v0.13.0`), while others do not (e.g. `releases/v0.12.0`). The vLLM Ascend release branch now follows the `releases/vX.Y.Z` naming convention, replacing the previous `vX.Y.Z-dev` format to align with vLLM's branch naming standards.
Usually, each minor version of vLLM (such as 0.7) corresponds to a vLLM Ascend version branch and supports its latest version (such as 0.7.3), as shown below: Usually, each minor version of vLLM (such as 0.7) corresponds to a vLLM Ascend version branch and supports its latest version (such as 0.7.3), as shown below:
@@ -140,15 +140,15 @@ To reduce maintenance costs, **all branch documentation content should remain co
| Version | Purpose | Code Branch | | Version | Purpose | Code Branch |
|-----|-----|---------| |-----|-----|---------|
| latest | Doc for the latest dev branch | vX.Y.Z-dev (Will be `main` after the first final release) | | latest | Doc for the latest rc release of main branch | `main` branch |
| version | Doc for historical released versions | Git tags, like vX.Y.Z[rcN] | | rc version | Doc for RC released versions | `vX.Y.ZrcN` --> `vX.Y.ZrcN` tag |
| stable (not yet released) | Doc for latest final release branch | Will be `vX.Y.Z-dev` after the first official release | | version | Doc for historical released versions | `vX.Y.Z` --> `releases/vX.Y.Z` branch |
Notes: Notes:
- `latest` documentation: Matches the current maintenance branch `vX.Y.Z-dev` (will be `main` after the first final release). It is continuously updated to ensure usability for the latest release. - `latest` documentation: always points to latest rc release of main branch.
- `version` documentation: Corresponds to specific released versions (e.g., `v0.7.3`, `v0.7.3rc1`). There are no further updates after release. - `rc version` documentation: there are no further updates after release.
- `stable` documentation (**not yet released**): Official release documentation. Updates are allowed in real-time after release, typically based on vX.Y.Z-dev. Once stable documentation is available, non-stable versions should display a header warning: `You are viewing the latest developer preview docs. Click here to view docs for the latest stable release.`. - `version` documentation: keep updating the `releases/vX.Y.Z` branch documentation to fix doc bugs.
## Software dependency management ## Software dependency management
- `torch-npu`: Ascend Extension for PyTorch (torch-npu) releases a stable version to [PyPi](https://pypi.org/project/torch-npu) - `torch-npu`: Ascend Extension for PyTorch (torch-npu) releases a stable version to [PyPi](https://pypi.org/project/torch-npu)