From cccc5b19698ce13c1f62b14bfa2c70093e67585a Mon Sep 17 00:00:00 2001 From: Ruihang Lai Date: Fri, 27 Sep 2024 22:31:47 -0400 Subject: [PATCH] Stable release v0.17.2 --- .github/workflows/wheel_applesiliconmac_nightly.yaml | 4 ++-- scripts/sync_package.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheel_applesiliconmac_nightly.yaml b/.github/workflows/wheel_applesiliconmac_nightly.yaml index fe6c669..af69c58 100644 --- a/.github/workflows/wheel_applesiliconmac_nightly.yaml +++ b/.github/workflows/wheel_applesiliconmac_nightly.yaml @@ -35,8 +35,8 @@ jobs: ln -s 3rdparty/tlcpack/conda conda - name: Checkout source run: | - git clone https://github.com/mlc-ai/relax tvm --recursive --single-branch --branch ${{ matrix.pkg_kind == 'stable' && 'v0.17.1' || 'mlc' }} - git clone https://github.com/mlc-ai/mlc-llm mlc-llm --recursive --single-branch --branch ${{ matrix.pkg_kind == 'stable' && 'v0.17.1' || 'main' }} + git clone https://github.com/mlc-ai/relax tvm --recursive --single-branch --branch ${{ matrix.pkg_kind == 'stable' && 'v0.17.2' || 'mlc' }} + git clone https://github.com/mlc-ai/mlc-llm mlc-llm --recursive --single-branch --branch ${{ matrix.pkg_kind == 'stable' && 'v0.17.2' || 'main' }} - name: Build mlc-ai @ 3.8 env: CONDA_HOME: ${{ secrets.M1_MAC_CONDA_HOME }} diff --git a/scripts/sync_package.py b/scripts/sync_package.py index 34c9491..7f251e8 100644 --- a/scripts/sync_package.py +++ b/scripts/sync_package.py @@ -7,7 +7,7 @@ # Modify the following two settings during release # ----------------------------------------------------------- # Tag used for stable build. -__stable_build__ = "v0.17.1" +__stable_build__ = "v0.17.2" # -----------------------------------------------------------