chore: Bump to 2.2.1

This commit is contained in:
senshinya
2025-08-14 23:40:27 +08:00
parent a9c5b9408d
commit d4750aefca
4 changed files with 21 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
## [2.2.1] - 2025-08-14
### Fixed
- 修复了筛选 panel 打开时滚动页面 panel 不跟随的问题
## [2.2.0] - 2025-08-14
### Added

View File

@@ -1 +1 @@
2.2.0
2.2.1

View File

@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "2.2.1",
date: "2025-08-14",
added: [
// 无新增内容
],
changed: [
// 无变更内容
],
fixed: [
"修复了筛选 panel 打开时滚动页面 panel 不跟随的问题"
]
},
{
version: "2.2.0",
date: "2025-08-14",

View File

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