From 1ffaa75472ae6ce1f8fc0f40f7efa8065abfce07 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Mon, 27 Jul 2026 14:03:22 -0400 Subject: [PATCH] fix(release): match the ECC banner name when bumping versions The banner regex still expected 'Everything Claude Code', but the plugin banner in .opencode/plugins/ecc-hooks.ts reads 'ECC' since the rename, so update_opencode_hook_banner_version aborted every bump. Accept both names. Co-Authored-By: Claude Claude-Session: https://claude.ai/code/session_0149VwNuynam6rvEfcMmiHHa --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index c14ce576d..a71d49218 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -248,7 +248,7 @@ update_opencode_hook_banner_version() { const version = process.argv[2]; const current = fs.readFileSync(file, "utf8"); const updated = current.replace( - /(## Active Plugin: Everything Claude Code v)[0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z.-]+)?/, + /(## Active Plugin: (?:Everything Claude Code|ECC) v)[0-9]+\.[0-9]+\.[0-9]+(?:-[0-9A-Za-z.-]+)?/, `$1${version}` ); if (updated === current) {