chore: Bump to 2.4.0
This commit is contained in:
11
CHANGELOG
11
CHANGELOG
@@ -1,3 +1,14 @@
|
||||
## [2.4.0] - 2025-08-15
|
||||
|
||||
### Added
|
||||
|
||||
- 支持 kvrocks 存储(持久化 kv 存储)
|
||||
|
||||
### Fixed
|
||||
|
||||
- 修复搜索结果排序不稳定的问题
|
||||
- 导入数据时同时更新内存缓存的管理员配置
|
||||
|
||||
## [2.3.0] - 2025-08-15
|
||||
|
||||
### Added
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.3.0
|
||||
2.4.0
|
||||
@@ -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",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* eslint-disable no-console */
|
||||
|
||||
const CURRENT_VERSION = '2.3.0';
|
||||
const CURRENT_VERSION = '2.4.0';
|
||||
|
||||
// 导出当前版本号供其他地方使用
|
||||
export { CURRENT_VERSION };
|
||||
|
||||
Reference in New Issue
Block a user