chore: Bump to 2.4.0

This commit is contained in:
senshinya
2025-08-15 19:47:38 +08:00
parent 989813f9ee
commit 9e3a90760f
4 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
## [2.4.0] - 2025-08-15
### Added
- 支持 kvrocks 存储(持久化 kv 存储)
### Fixed
- 修复搜索结果排序不稳定的问题
- 导入数据时同时更新内存缓存的管理员配置
## [2.3.0] - 2025-08-15
### Added

View File

@@ -1 +1 @@
2.3.0
2.4.0

View File

@@ -10,6 +10,20 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "2.4.0",
date: "2025-08-15",
added: [
"支持 kvrocks 存储(持久化 kv 存储)"
],
changed: [
// 无变更内容
],
fixed: [
"修复搜索结果排序不稳定的问题",
"导入数据时同时更新内存缓存的管理员配置"
]
},
{
version: "2.3.0",
date: "2025-08-15",

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '2.3.0';
const CURRENT_VERSION = '2.4.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };