chore: Bump to 2.0.1

This commit is contained in:
senshinya
2025-08-13 02:22:36 +08:00
parent 2ed32f5896
commit 312c9db3fd
4 changed files with 25 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
## [2.0.1] - 2025-08-13
### Changed
- 版本检查和变更日志请求 Github
### Fixed
- 微调管理面板样式
## [2.0.0] - 2025-08-13
### Added

View File

@@ -1 +1 @@
2.0.0
2.0.1

View File

@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "2.0.1",
date: "2025-08-13",
added: [
// 无新增内容
],
changed: [
"版本检查和变更日志请求 Github"
],
fixed: [
"微调管理面板样式"
]
},
{
version: "2.0.0",
date: "2025-08-13",

View File

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