From e3cb5e78d650682111c2e4b79da05ba79f7a48d5 Mon Sep 17 00:00:00 2001 From: Vishnu Jayavel Date: Fri, 10 Jul 2026 00:13:49 -0700 Subject: [PATCH] fix: bump stale openapi.json info.version to 0.2.0 The Scalar API docs (api.html) render whatever `info.version` is set to in openapi.json, which has been frozen at 0.1.6 since #46 even though the spec has since been substantially reworked (run creation consolidated under /runs, streaming, resume, etc.). Commit 59338b3 ("Small fixes for 0.2.0") shows 0.2.0 was already the intended label for that consolidation, so this bumps the field to match. Verified: valid JSON, `make format-openapi` reports the file unchanged (already prettier-formatted), and the version field isn't referenced by generated server code (`make gen-server` diff is unaffected by this change). Fixes #60 --- openapi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openapi.json b/openapi.json index ca97389..d645f55 100644 --- a/openapi.json +++ b/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "Agent Protocol", - "version": "0.1.6" + "version": "0.2.0" }, "tags": [ {