From ace0309465215ad00f49d34d1fbf5d5bae72cc6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Tue, 20 May 2025 20:20:06 +0800 Subject: [PATCH] =?UTF-8?q?build(Release):=20=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7=E5=B9=B6=E5=88=87=E6=8D=A2=E5=88=B0=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 app 版本号从 1.0.1 升级到 1.0.2 - 在 basic 和 sdk_ywx 模块中将 BUILD_MODE_NAME 从 'debug' 改为 'release' - 将 DEBUG 标志从 true 设置为 false - 更新 CHANGELOG.md,添加新版本发布日期和特性 --- BuildProfile.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildProfile.ets b/BuildProfile.ets index a0db51a..dd80d80 100644 --- a/BuildProfile.ets +++ b/BuildProfile.ets @@ -2,8 +2,8 @@ * Use these variables when you tailor your ArkTS code. They must be of the const type. */ export const HAR_VERSION = '1.0.9'; -export const BUILD_MODE_NAME = 'debug'; -export const DEBUG = true; +export const BUILD_MODE_NAME = 'release'; +export const DEBUG = false; export const TARGET_NAME = 'default'; /**