From 5bd06b45992e850548e0520c4cb4b46493f68ab9 Mon Sep 17 00:00:00 2001 From: Yineng Zhang Date: Sat, 27 Jul 2024 05:56:30 +1000 Subject: [PATCH] fix: use REPO_TOKEN (#755) --- .github/workflows/release.yml | 2 +- python/pyproject.toml | 2 +- python/sglang/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfd75471fd2..a146f1aaef5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} with: name: Release ${{ steps.get_version.outputs.TAG }} tag_name: ${{ steps.get_version.outputs.TAG }} diff --git a/python/pyproject.toml b/python/pyproject.toml index 03a0e1396c7..d26cd421924 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sglang" -version = "0.2.4" +version = "0.2.5" description = "SGLang is yet another fast serving framework for large language models and vision language models." readme = "README.md" requires-python = ">=3.8" diff --git a/python/sglang/version.py b/python/sglang/version.py index 788da1fb316..fe404ae570d 100644 --- a/python/sglang/version.py +++ b/python/sglang/version.py @@ -1 +1 @@ -__version__ = "0.2.4" +__version__ = "0.2.5"