-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomers
Description
Summary
文档审计发现以下陈旧内容需要更新:
P0: 代码版本号未同步 🔴
位置: hotplex.go:12-15
const (
Version = "0.11.2" // ❌ 应为 "0.11.3"
VersionMajor = 0
VersionMinor = 11
VersionPatch = 2 // ❌ 应为 3
)问题: 最新 release tag 是 v0.11.3 (2026-02-25),但代码中的版本号仍为 0.11.2。
影响: SDK 用户调用 GetCLIVersion() 或 WebSocket version 命令时获取的版本信息不正确。
修复方案:
const (
Version = "0.11.3"
VersionMajor = 0
VersionMinor = 11
VersionPatch = 3
)P1: README.md 中的断链 🟡
位置: README.md:190
**📊 [Full 2026 Roadmap →](docs/roadmap-2026.md)** — March 2026 Sprint: All core features completed!问题: docs/roadmap-2026.md 已归档至 docs/archive/roadmap-2026.md,当前链接为 404。
影响: 用户点击 Roadmap 链接会看到 404 页面。
修复方案:
**📊 [Full 2026 Roadmap →](docs/archive/roadmap-2026.md)** — March 2026 Sprint: All core features completed!Tasks
- 更新
hotplex.go中的版本号至0.11.3 - 修复
README.md中的 Roadmap 断链 - 考虑添加 CI 检查以确保版本号与 git tag 同步
Verification
# 验证版本号
grep -E "Version.*=.*0\.11\." hotplex.go
# 验证断链
grep "roadmap-2026" README.md此 Issue 由文档审计工具自动生成
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomers