chore: Bump to 3.0.2

This commit is contained in:
senshinya
2025-08-20 21:08:35 +08:00
parent c225fa5850
commit 05b604d398
4 changed files with 25 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
## [3.0.2] - 2025-08-20
### Changed
- 优化机器码生成逻辑
### Fixed
- 修复 redis url 不支持 rediss 协议的问题
## [3.0.1] - 2025-08-20
### Fixed

View File

@@ -1 +1 @@
3.0.1
3.0.2

View File

@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "3.0.2",
date: "2025-08-20",
added: [
// 无新增内容
],
changed: [
"优化机器码生成逻辑"
],
fixed: [
"修复 redis url 不支持 rediss 协议的问题"
]
},
{
version: "3.0.1",
date: "2025-08-20",

View File

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