chore: Bump to 2.1.0

This commit is contained in:
senshinya
2025-08-13 22:10:25 +08:00
parent 82c86fc6a0
commit 8b2e8368b7
4 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
## [2.1.0] - 2025-08-13
### Added
- 支持通过订阅获取配置文件
### Changed
- 微调部分文案和 UI
- 删除部分无用代码
## [2.0.1] - 2025-08-13
### Changed

View File

@@ -1 +1 @@
2.0.1
2.1.0

View File

@@ -10,6 +10,20 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "2.1.0",
date: "2025-08-13",
added: [
"支持通过订阅获取配置文件"
],
changed: [
"微调部分文案和 UI",
"删除部分无用代码"
],
fixed: [
// 无修复内容
]
},
{
version: "2.0.1",
date: "2025-08-13",

View File

@@ -2,7 +2,7 @@
'use client';
const CURRENT_VERSION = '2.0.1';
const CURRENT_VERSION = '2.1.0';
// 版本检查结果枚举
export enum UpdateStatus {