From 9a61182732e124ecc69501ff306ea92573c1d25f Mon Sep 17 00:00:00 2001 From: Yineng Zhang Date: Sat, 27 Jul 2024 05:48:38 +1000 Subject: [PATCH] fix: add release tag workflow (#754) --- .github/workflows/release.yml | 2 ++ python/pyproject.toml | 2 +- python/sglang/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e231af59..cfd75471f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,8 @@ jobs: - name: Release uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_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 354d0dbfe..03a0e1396 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sglang" -version = "0.2.3" +version = "0.2.4" 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 d31c31eae..788da1fb3 100644 --- a/python/sglang/version.py +++ b/python/sglang/version.py @@ -1 +1 @@ -__version__ = "0.2.3" +__version__ = "0.2.4"