build(Release): 更新版本号并切换到发布模式

- 将 app 版本号从 1.0.1 升级到 1.0.2
- 在 basic 和 sdk_ywx 模块中将 BUILD_MODE_NAME 从 'debug' 改为 'release'
- 将 DEBUG 标志从 true 设置为 false
- 更新 CHANGELOG.md,添加新版本发布日期和特性
这个提交包含在:
徐勤民 2025-05-20 20:20:06 +08:00
父节点 15e26ff27a
当前提交 ace0309465

查看文件

@ -2,8 +2,8 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * 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 HAR_VERSION = '1.0.9';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
/** /**