From 552bf3a7caac11a2a4241f92b86da3e725a05999 Mon Sep 17 00:00:00 2001 From: Lyu Han Date: Sat, 25 Jan 2025 18:42:35 +0800 Subject: [PATCH] bump version to v0.7.0.post1 (#3076) --- docs/en/get_started/installation.md | 2 +- docs/zh_cn/get_started/installation.md | 2 +- lmdeploy/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/get_started/installation.md b/docs/en/get_started/installation.md index c205b68a0..1c689f043 100644 --- a/docs/en/get_started/installation.md +++ b/docs/en/get_started/installation.md @@ -23,7 +23,7 @@ pip install lmdeploy The default prebuilt package is compiled on **CUDA 12**. If CUDA 11+ (>=11.3) is required, you can install lmdeploy by: ```shell -export LMDEPLOY_VERSION=0.7.0 +export LMDEPLOY_VERSION=0.7.0.post1 export PYTHON_VERSION=38 pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118 ``` diff --git a/docs/zh_cn/get_started/installation.md b/docs/zh_cn/get_started/installation.md index b8a92f70d..53f0b1396 100644 --- a/docs/zh_cn/get_started/installation.md +++ b/docs/zh_cn/get_started/installation.md @@ -23,7 +23,7 @@ pip install lmdeploy 默认的预构建包是在 **CUDA 12** 上编译的。如果需要 CUDA 11+ (>=11.3),你可以使用以下命令安装 lmdeploy: ```shell -export LMDEPLOY_VERSION=0.7.0 +export LMDEPLOY_VERSION=0.7.0.post1 export PYTHON_VERSION=38 pip install https://github.com/InternLM/lmdeploy/releases/download/v${LMDEPLOY_VERSION}/lmdeploy-${LMDEPLOY_VERSION}+cu118-cp${PYTHON_VERSION}-cp${PYTHON_VERSION}-manylinux2014_x86_64.whl --extra-index-url https://download.pytorch.org/whl/cu118 ``` diff --git a/lmdeploy/version.py b/lmdeploy/version.py index b4f2ca71b..0abfd655a 100644 --- a/lmdeploy/version.py +++ b/lmdeploy/version.py @@ -1,7 +1,7 @@ # Copyright (c) OpenMMLab. All rights reserved. from typing import Tuple -__version__ = '0.7.0' +__version__ = '0.7.0.post1' short_version = __version__