From 4db5176d9758b720b05460c50ace3c01026eb158 Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Mon, 5 Aug 2024 14:39:48 -0700 Subject: [PATCH] bump version to v0.5.4 (#7139) --- docs/source/getting_started/installation.rst | 2 +- vllm/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/getting_started/installation.rst b/docs/source/getting_started/installation.rst index 57ad8bacedfc..5294003aa926 100644 --- a/docs/source/getting_started/installation.rst +++ b/docs/source/getting_started/installation.rst @@ -48,7 +48,7 @@ You can install vLLM using pip: .. code-block:: console - $ export VLLM_VERSION=0.5.2 # vLLM's main branch version is currently set to latest released tag + $ export VLLM_VERSION=0.5.4 # vLLM's main branch version is currently set to latest released tag $ pip install https://vllm-wheels.s3.us-west-2.amazonaws.com/nightly/vllm-${VLLM_VERSION}-cp38-abi3-manylinux1_x86_64.whl $ # You can also access a specific commit $ # export VLLM_COMMIT=... diff --git a/vllm/version.py b/vllm/version.py index 693065471063..247036f1d621 100644 --- a/vllm/version.py +++ b/vllm/version.py @@ -9,4 +9,4 @@ except Exception as e: stacklevel=2) __commit__ = "COMMIT_HASH_PLACEHOLDER" -__version__ = "0.5.3.post1" +__version__ = "0.5.4"