From cb2ffd78a15644eb02aaba6fe5d31472a63b41eb Mon Sep 17 00:00:00 2001 From: Nikhil Ranka Date: Thu, 27 Aug 2026 12:17:14 +0530 Subject: [PATCH 1/3] Bump agent-context and git extension versions to 1.1.0 (#4345) --- extensions/agent-context/extension.yml | 2 +- extensions/git/extension.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/agent-context/extension.yml b/extensions/agent-context/extension.yml index 191069e32c..2846b4d9a6 100644 --- a/extensions/agent-context/extension.yml +++ b/extensions/agent-context/extension.yml @@ -3,7 +3,7 @@ schema_version: "1.0" extension: id: agent-context name: "Coding Agent Context" - version: "1.0.0" + version: "1.1.0" description: "Manages coding agent context/instruction files (e.g., CLAUDE.md, copilot-instructions.md) with project-specific plan references and configurable markers" author: spec-kit-core repository: https://github.com/github/spec-kit diff --git a/extensions/git/extension.yml b/extensions/git/extension.yml index c92322d8b1..84e2dc35a5 100644 --- a/extensions/git/extension.yml +++ b/extensions/git/extension.yml @@ -3,7 +3,7 @@ schema_version: "1.0" extension: id: git name: "Git Branching Workflow" - version: "1.0.0" + version: "1.1.0" description: "Feature branch creation, numbering (sequential/timestamp), templating, validation, and Git remote detection" author: spec-kit-core repository: https://github.com/github/spec-kit From ffbf9907e892068e535868ad35bdddc5e5345a36 Mon Sep 17 00:00:00 2001 From: Ken Schlobohm Date: Fri, 28 Aug 2026 14:05:55 -0500 Subject: [PATCH 2/3] fix(extensions): sync bundled catalog versions Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 38232075-1048-401a-a5a8-a04f9ed6f2ac --- extensions/catalog.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/catalog.json b/extensions/catalog.json index d05c48e0e5..21e6819061 100644 --- a/extensions/catalog.json +++ b/extensions/catalog.json @@ -6,7 +6,7 @@ "agent-context": { "name": "Coding Agent Context", "id": "agent-context", - "version": "1.0.0", + "version": "1.1.0", "description": "Manages coding agent context/instruction files (e.g., CLAUDE.md, copilot-instructions.md) with project-specific plan references and configurable markers", "author": "spec-kit-core", "repository": "https://github.com/github/spec-kit", @@ -51,7 +51,7 @@ "git": { "name": "Git Branching Workflow", "id": "git", - "version": "1.0.0", + "version": "1.1.0", "description": "Feature branch creation, numbering (sequential/timestamp), validation, and Git remote detection", "author": "spec-kit-core", "repository": "https://github.com/github/spec-kit", From e9b120148dffbdccd0f9948b8997e6a4ecbd6660 Mon Sep 17 00:00:00 2001 From: Ken Schlobohm Date: Fri, 28 Aug 2026 15:00:46 -0500 Subject: [PATCH 3/3] test(extensions): align version bump metadata Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 38232075-1048-401a-a5a8-a04f9ed6f2ac --- extensions/catalog.json | 2 +- tests/extensions/git/test_git_extension.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/catalog.json b/extensions/catalog.json index 21e6819061..2f067699c4 100644 --- a/extensions/catalog.json +++ b/extensions/catalog.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-07-17T00:00:00Z", + "updated_at": "2026-08-28T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.json", "extensions": { "agent-context": { diff --git a/tests/extensions/git/test_git_extension.py b/tests/extensions/git/test_git_extension.py index f6be51caf6..5bc25b9332 100644 --- a/tests/extensions/git/test_git_extension.py +++ b/tests/extensions/git/test_git_extension.py @@ -145,7 +145,7 @@ def test_manifest_validates(self): m = ExtensionManifest(EXT_DIR / "extension.yml") assert m.id == "git" - assert m.version == "1.0.0" + assert m.version == "1.1.0" def test_manifest_commands(self): """Manifest declares expected commands."""