From 4c5c7f4c1161a8bf5bb04c03b6134ef122090fff Mon Sep 17 00:00:00 2001 From: jkrandom Date: Fri, 31 Jul 2026 19:34:46 +0800 Subject: [PATCH] chore: release 0.7.3 Ships the run-mode /loop fallback (issue #18): opencode run "/loop ..." now goes through the same deterministic parser as the TUI command path, with quoted-argv handling. Co-Authored-By: Claude Opus 4.7 --- package.json | 2 +- tests/package-exports.test.mjs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1ac446d..50fad5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencode-plugin-loop", - "version": "0.7.2", + "version": "0.7.3", "description": "/loop command for opencode — run prompts on a schedule (fixed, adaptive, or maintenance), modeled after Claude Code's /loop", "type": "module", "main": "./dist/index.js", diff --git a/tests/package-exports.test.mjs b/tests/package-exports.test.mjs index 7865e77..f80d973 100644 --- a/tests/package-exports.test.mjs +++ b/tests/package-exports.test.mjs @@ -6,8 +6,8 @@ const packageJson = JSON.parse( await readFile(new URL("../package.json", import.meta.url), "utf8"), ) -test("publishes the 0.7.2 release", () => { - assert.equal(packageJson.version, "0.7.2") +test("publishes the 0.7.3 release", () => { + assert.equal(packageJson.version, "0.7.3") }) test("publishes explicit server and TUI plugin entrypoints", () => {