chore: bump v0.1.25 (#725)

This commit is contained in:
Yineng Zhang
2024-07-25 20:04:35 +10:00
committed by GitHub
parent 04ec6ba2ac
commit 25c881a005
4 changed files with 32 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "sglang"
version = "0.1.24"
version = "0.1.25"
description = "SGLang is yet another fast serving framework for large language models and vision language models."
readme = "README.md"
requires-python = ">=3.8"

View File

@@ -1,5 +1,3 @@
__version__ = "0.1.24"
# SGL API Components
from sglang.api import (
Runtime,
@@ -32,6 +30,8 @@ from sglang.lang.backend.openai import OpenAI
from sglang.lang.backend.runtime_endpoint import RuntimeEndpoint
from sglang.lang.backend.vertexai import VertexAI
from .version import __version__
# public APIs management
__all__ = [
"global_config",

1
python/sglang/version.py Normal file
View File

@@ -0,0 +1 @@
__version__ = "0.1.25"