v0.6.0 Release Notes
v0.5.1 -> v0.6.0
Summary
KuraDB returns to its personal repository home, moving the Go module path back under the original owner. Project links and installation guidance now point at the restored location.
翻譯
KuraDB 回到個人 repository,Go 模組路徑移回原擁有者底下。專案連結與安裝指引同步指向還原後的位置。
⚠️ Breaking Changes
Go module path changed
Before:
module github.com/agenvoy/kuradb
After:
module github.com/pardnchiu/kuradb
Migration:
# Old
go install github.com/agenvoy/kuradb/cmd/app@latest
# New
go install github.com/pardnchiu/kuradb/cmd/app@latest
mv "$(go env GOPATH)/bin/app" "$(go env GOPATH)/bin/kura"
- Source builds:
git remote set-url <remote> https://github.com/pardnchiu/KuraDB.git, thenmake buildas before. - Code importing
github.com/agenvoy/kuradb/...must switch togithub.com/pardnchiu/kuradb/.... - The CLI, HTTP API, MCP tools, and
~/.config/kuradb/layout are unchanged; no data migration is needed.
翻譯
Go 模組路徑由 github.com/agenvoy/kuradb 改為 github.com/pardnchiu/kuradb。以 go install 安裝者需改用新路徑;原始碼建置者需將 git remote 指向 pardnchiu/KuraDB;import 舊路徑的程式需改為新路徑。CLI、HTTP API、MCP tool 與 ~/.config/kuradb/ 結構皆不變,無需資料遷移。
Changes
BREAKING
- Move the Go module path back to
github.com/pardnchiu/kuradband update all internal imports (@pardnchiu) [85a4097]
翻譯
- Go 模組路徑移回
github.com/pardnchiu/kuradb,並更新所有內部 import
DOC
- Point README badges, clone commands, issue and contributor links, and
go installinstructions atpardnchiu/KuraDB(@pardnchiu) [85a4097]
翻譯
- README 徽章、clone 指令、issue 與貢獻者連結、
go install說明改指向pardnchiu/KuraDB
Scope
go.mod— BREAKINGcmd/app/— BREAKING (multiple files)internal/— BREAKING (multiple files)README.md,doc/— DOC
Generated by SKILL