From ebd924364cc57dba3a862bd313e9ba69359c25c3 Mon Sep 17 00:00:00 2001 From: Ruslan Strazhnyk Date: Mon, 13 Jul 2026 18:33:29 +0200 Subject: [PATCH] chore: release 1.20.9 --- CHANGELOG.md | 10 ++++++++++ main.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) 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"