From 747f962ae469306d664172610bae0ac962de9c01 Mon Sep 17 00:00:00 2001 From: Zhou Zhenglong Date: Wed, 8 Apr 2026 16:47:49 +0800 Subject: [PATCH] bump version to 0.0.1-alpha.20 --- package-lock.json | 4 ++-- package.json | 2 +- repo.json | 2 +- src/cli.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e12ec9d0..74d07a24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cocos-cli", - "version": "0.0.1-alpha.19", + "version": "0.0.1-alpha.20", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cocos-cli", - "version": "0.0.1-alpha.19", + "version": "0.0.1-alpha.20", "hasInstallScript": true, "license": "ISC", "dependencies": { diff --git a/package.json b/package.json index 6de42992..04608b6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cocos-cli", - "version": "0.0.1-alpha.19", + "version": "0.0.1-alpha.20", "displayName": "COCOS CLI", "icon": "static/logo/logo.png", "description": "COCOS CLI", diff --git a/repo.json b/repo.json index 1253d249..0c9af613 100644 --- a/repo.json +++ b/repo.json @@ -2,7 +2,7 @@ "engine": { "repo": "https://github.com/cocos/cocos4.git", "dist": "packages/engine", - "tag": "4.0.0-alpha.11" + "tag": "4.0.0-alpha.12" }, "external": { "repo": "https://github.com/cocos/cocos-engine-external.git", diff --git a/src/cli.ts b/src/cli.ts index 2f0898af..97c17622 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -12,7 +12,7 @@ const program = new Command(); program .name('cocos') .description('Cocos CLI tool for project management and building') - .version('0.0.1-alpha.19') + .version('0.0.1-alpha.20') .option('--debug', 'Enable debug mode') .option('--no-interactive', 'Disable interactive mode (for CI)') .option('--config ', 'Specify config file path');