Files
CloudSearch/packages/backend/src/version.ts

13 lines
361 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* CloudSearch 应用版本号
*
* 版本管理规则:
* - 每次小优化/修复patch +1 (0.0.1 → 0.0.2)
* - 20 次 patch 后minor +1, patch 归零 (0.1.0)
* - 10 次 minor 后major +1, minor 归零 (1.0.0)
*
* 修改此文件的同时请同步更新后端 package.json 中的 version 字段。
*/
export const APP_VERSION = "0.1.6";