Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sgl-router/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sglang-router"
version = "0.1.4"
version = "0.1.5"
Copy link
Contributor

Choose a reason for hiding this comment

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

high

While you've updated the version here, it seems the version in sgl-router/py_src/sglang_router/version.py is still 0.1.4. This will lead to an inconsistency where the installed package version (e.g., from pip show sglang-router) will be 0.1.5, but sglang_router.__version__ will report 0.1.4.

To ensure consistency, please update the __version__ attribute in sgl-router/py_src/sglang_router/version.py to match this version as well.

description = "SGLang router is a standalone module implemented in Rust to achieve data parallelism across SGLang instances."
authors = [{name = "Byron Hsu", email = "byronhsu1230@gmail.com"}]
requires-python = ">=3.8"
Expand Down
Loading