diff --git a/CHANGELOG.md b/CHANGELOG.md index b87e688..7a0ab31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https:// ## [Unreleased] +## [1.20.9] - 2026-07-13 + +### Fixed +- Activating the OpenCode backend no longer aborts skill install with + `skills: unknown backend "opencode"`. OpenCode is now a first-class skills + backend: the QA skill catalog materializes into `~/.config/opencode/skills/` + (name + description frontmatter, matching OpenCode's recognized schema) on + activation and on every launch, alongside Claude Code and Codex. `/skills` + status and `/skills install` now cover the OpenCode (`oc`) backend too. + ## [1.20.8] - 2026-07-13 ### Added diff --git a/main.go b/main.go index 289c5bb..7a4a84e 100644 --- a/main.go +++ b/main.go @@ -19,7 +19,7 @@ import ( ) // Version is set at build time via -ldflags "-X main.Version=x.y.z" -var Version = "1.20.8" +var Version = "1.20.9" const Name = "qmax-code"