bump version to v0.4.2 (#4600)

This commit is contained in:
Simon Mo 2024-05-04 17:09:49 -07:00 committed by GitHub
parent 4302987069
commit 8d8357c8ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ module.exports = async (github, context, core) => {
generate_release_notes: true, generate_release_notes: true,
name: process.env.RELEASE_TAG, name: process.env.RELEASE_TAG,
owner: context.repo.owner, owner: context.repo.owner,
prerelease: false, prerelease: true,
repo: context.repo.repo, repo: context.repo.repo,
tag_name: process.env.RELEASE_TAG, tag_name: process.env.RELEASE_TAG,
}); });

View File

@ -9,7 +9,7 @@ from vllm.model_executor.models import ModelRegistry
from vllm.outputs import CompletionOutput, RequestOutput from vllm.outputs import CompletionOutput, RequestOutput
from vllm.sampling_params import SamplingParams from vllm.sampling_params import SamplingParams
__version__ = "0.4.1" __version__ = "0.4.2"
__all__ = [ __all__ = [
"LLM", "LLM",