Skip to content

Commit bba6985

Browse files
sglang-botyuchengz816-bot
authored andcommitted
chore: bump SGLang version to 0.5.6 (sgl-project#14316)
Co-authored-by: sglang-bot <[email protected]>
1 parent 599001e commit bba6985

File tree

12 files changed

+14
-13
lines changed

12 files changed

+14
-13
lines changed

benchmark/deepseek_v3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add [performance optimization options](#performance-optimization-options) as nee
3333

3434
```bash
3535
# Installation
36-
pip install "sglang[all]>=0.5.5.post3"
36+
pip install "sglang[all]>=0.5.6"
3737

3838
# Launch
3939
python3 -m sglang.launch_server --model deepseek-ai/DeepSeek-V3 --tp 8 --trust-remote-code

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARG GRACE_BLACKWELL_DEEPEP_BRANCH=gb200_blog_part_2
1010
ARG DEEPEP_COMMIT=9af0e0d0e74f3577af1979c9b9e1ac2cad0104ee
1111
ARG BUILD_AND_DOWNLOAD_PARALLEL=8
1212
ARG SGL_KERNEL_VERSION=0.3.18.post2
13-
ARG SGL_VERSION=0.5.5.post3
13+
ARG SGL_VERSION=0.5.6
1414
ARG USE_LATEST_SGLANG=0
1515
ARG GDRCOPY_VERSION=2.5.1
1616
ARG PIP_DEFAULT_INDEX

docker/rocm.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Usage (to build SGLang ROCm docker image):
2-
# docker build --build-arg SGL_BRANCH=v0.5.5.post3 --build-arg GPU_ARCH=gfx942 -t v0.5.5.post3-rocm630-mi30x -f rocm.Dockerfile .
3-
# docker build --build-arg SGL_BRANCH=v0.5.5.post3 --build-arg GPU_ARCH=gfx942-rocm700 -t v0.5.5.post3-rocm700-mi30x -f rocm.Dockerfile .
4-
# docker build --build-arg SGL_BRANCH=v0.5.5.post3 --build-arg GPU_ARCH=gfx950 -t v0.5.5.post3-rocm700-mi35x -f rocm.Dockerfile .
2+
# docker build --build-arg SGL_BRANCH=v0.5.6 --build-arg GPU_ARCH=gfx942 -t v0.5.6-rocm630-mi30x -f rocm.Dockerfile .
3+
# docker build --build-arg SGL_BRANCH=v0.5.6 --build-arg GPU_ARCH=gfx942-rocm700 -t v0.5.6-rocm700-mi30x -f rocm.Dockerfile .
4+
# docker build --build-arg SGL_BRANCH=v0.5.6 --build-arg GPU_ARCH=gfx950 -t v0.5.6-rocm700-mi35x -f rocm.Dockerfile .
55

66

77
# Default base images

docs/get_started/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ uv pip install "sglang" --prerelease=allow
2525

2626
```bash
2727
# Use the last release branch
28-
git clone -b v0.5.5.post3 https://github.com/sgl-project/sglang.git
28+
git clone -b v0.5.6 https://github.com/sgl-project/sglang.git
2929
cd sglang
3030

3131
# Install the python packages

docs/platforms/amd_gpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ You can install SGLang using one of the methods below.
4444

4545
```bash
4646
# Use the last release branch
47-
git clone -b v0.5.5.post3 https://github.com/sgl-project/sglang.git
47+
git clone -b v0.5.6 https://github.com/sgl-project/sglang.git
4848
cd sglang
4949

5050
# Compile sgl-kernel

docs/platforms/ascend_npu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ We are also providing a DeepEP-compatible Library as a drop-in replacement of de
8181

8282
```shell
8383
# Use the last release branch
84-
git clone -b v0.5.5.post3 https://github.com/sgl-project/sglang.git
84+
git clone -b v0.5.6 https://github.com/sgl-project/sglang.git
8585
cd sglang
8686

8787
pip install --upgrade pip

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sglang"
7-
version = "0.5.5.post3"
7+
version = "0.5.6"
88
description = "SGLang is a fast serving framework for large language models and vision language models."
99
readme = "README.md"
1010
requires-python = ">=3.10"

python/pyproject_cpu.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "sglang"
8-
version = "0.5.5.post3"
8+
version = "0.5.6"
99
description = "SGLang is a fast serving framework for large language models and vision language models."
1010
readme = "README.md"
1111
requires-python = ">=3.10"

python/pyproject_other.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sglang"
7-
version = "0.5.5.post3"
7+
version = "0.5.6"
88
description = "SGLang is a fast serving framework for large language models and vision language models."
99
readme = "README.md"
1010
requires-python = ">=3.10"

python/pyproject_xpu.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sglang"
7-
version = "0.5.5.post3"
7+
version = "0.5.6"
88
description = "SGLang is a fast serving framework for large language models and vision language models."
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)