From 1e2027d17b2ed67e22d26d06fadb6d0dce47eb21 Mon Sep 17 00:00:00 2001 From: Zeping Bai Date: Tue, 6 Aug 2024 11:35:24 +0800 Subject: [PATCH] feat: bump to 0.12.1 (#165) --- .github/workflows/e2e.yaml | 2 +- apps/cli/src/command/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index bed2cfd7..736c946f 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -39,7 +39,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'test/api7') || github.event_name == 'push' strategy: matrix: - version: [3.2.13.0, 3.2.14.1] + version: [3.2.13.0, 3.2.14.2] env: BACKEND_API7_DOWNLOAD_URL: https://run.api7.ai/api7-ee/api7-ee-v${{ matrix.version }}.tar.gz BACKEND_API7_LICENSE: ${{ secrets.BACKEND_API7_LICENSE }} diff --git a/apps/cli/src/command/index.ts b/apps/cli/src/command/index.ts index c33d8081..42b00427 100644 --- a/apps/cli/src/command/index.ts +++ b/apps/cli/src/command/index.ts @@ -16,7 +16,7 @@ export const setupCommands = (): Command => { program .configureHelp({ showGlobalOptions: true }) .passThroughOptions() - .version('0.12.0'); + .version('0.12.1'); program .addCommand(PingCommand)