Skip to content

chore: bump SGLang version to 0.5.3rc1#11255

Closed
sglang-bot wants to merge 4 commits intomainfrom
bot/bump-sglang-version-0.5.3rc1-b687
Closed

chore: bump SGLang version to 0.5.3rc1#11255
sglang-bot wants to merge 4 commits intomainfrom
bot/bump-sglang-version-0.5.3rc1-b687

Conversation

@sglang-bot
Copy link
Copy Markdown
Member

Summary

This PR bumps the SGLang version to 0.5.3rc1 across all relevant files.

Files Updated

  • benchmark/deepseek_v3/README.md
  • docker/Dockerfile.rocm
  • docs/get_started/install.md
  • docs/platforms/amd_gpu.md
  • docs/platforms/ascend_npu.md
  • python/pyproject.toml
  • python/pyproject_other.toml
  • python/sglang/version.py

🤖 Generated with GitHub Actions

Kangyan-Zhou and others added 4 commits October 5, 2025 18:49
This commit updates the SGLang version across all relevant files:
          - benchmark/deepseek_v3/README.md
          - docker/Dockerfile.rocm
          - docs/get_started/install.md
          - docs/platforms/amd_gpu.md
          - docs/platforms/ascend_npu.md
          - python/pyproject.toml
          - python/pyproject_other.toml
          - python/sglang/version.py

🤖 Generated with GitHub Actions
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @sglang-bot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on updating the SGLang project's version to 0.5.3rc1. This update is reflected in various parts of the codebase, including installation instructions, Docker configurations, and project metadata. Additionally, the PR introduces significant improvements to the internal version management scripts, making them more intelligent and automated for future version updates.

Highlights

  • SGLang Version Bump: The core SGLang version has been updated from 0.5.3rc0 to 0.5.3rc1 across all relevant configuration files, documentation, and Python modules.
  • Automated Version Management: New and updated scripts (scripts/release/commit_and_pr.sh, scripts/release/bump_kernel_version.py, scripts/release/bump_sglang_version.py, scripts/release/utils.py) have been introduced or modified to streamline the process of bumping versions, including improved version validation and comparison logic.
  • Enhanced Version Validation: The utils.py script now includes more robust version parsing and comparison functions (parse_version, compare_versions) to correctly handle release candidates (rc) and post-release (.post) versions, ensuring proper version ordering and preventing accidental downgrades.
Ignored Files
  • Ignored by pattern: .github/workflows/** (2)
    • .github/workflows/bot-bump-kernel-version.yml
    • .github/workflows/bot-bump-sglang-version.yml
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request bumps the SGLang version to 0.5.3rc1. More importantly, it introduces significant improvements to the release automation scripts. The scripts are now more robust, with enhanced version validation that supports rc and post releases, and proper version comparison to prevent accidental downgrades. A new script to automate commits and pull request creation is also added. The changes are well-implemented and will improve the release process. I have one minor suggestion to optimize the new shell script.

Comment on lines +24 to +25
FILES_LIST=$(git diff --name-only | sed 's/^/- /')
COMMIT_FILES=$(git diff --name-only | sed 's/^/ - /')
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To avoid executing the same command twice, you can store the output of git diff --name-only in a variable and then use it to generate both FILES_LIST and COMMIT_FILES. This is a minor optimization but improves script efficiency and maintainability.

Suggested change
FILES_LIST=$(git diff --name-only | sed 's/^/- /')
COMMIT_FILES=$(git diff --name-only | sed 's/^/ - /')
CHANGED_FILES=$(git diff --name-only)
FILES_LIST=$(echo "$CHANGED_FILES" | sed 's/^/- /')
COMMIT_FILES=$(echo "$CHANGED_FILES" | sed 's/^/ - /')

@zhyncs zhyncs closed this Oct 6, 2025
@zhyncs zhyncs deleted the bot/bump-sglang-version-0.5.3rc1-b687 branch October 6, 2025 04:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants