From 3c7feef3947c48f4b8eb8674e5b77907a10ed8dc Mon Sep 17 00:00:00 2001 From: Nathan Burg Date: Fri, 27 Mar 2026 18:26:09 -0700 Subject: [PATCH 1/2] fix: lowercase repository URL to match GitHub provenance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit npm's sigstore provenance verification rejects publishes when the repository.url in package.json doesn't case-match the actual GitHub org name. "GitHits-com" → "githits-com". Co-Authored-By: Claude Opus 4.6 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c04797fd..53b5c74c 100644 --- a/package.json +++ b/package.json @@ -48,10 +48,10 @@ "homepage": "https://githits.com", "repository": { "type": "git", - "url": "git+https://github.com/GitHits-com/githits-cli.git" + "url": "git+https://github.com/githits-com/githits-cli.git" }, "bugs": { - "url": "https://github.com/GitHits-com/githits-cli/issues" + "url": "https://github.com/githits-com/githits-cli/issues" }, "engines": { "node": ">=20" From 98b8ba0e086d897822ce4726e90745708f9bb31e Mon Sep 17 00:00:00 2001 From: Nathan Burg Date: Fri, 27 Mar 2026 18:27:10 -0700 Subject: [PATCH 2/2] chore: bump version to 0.1.5 Skips 0.1.4 which failed to publish due to the provenance URL mismatch. Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53b5c74c..f07ef1cd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "githits", "description": "CLI companion for GitHits - code examples from global open source for developers and AI assistants", - "version": "0.1.3", + "version": "0.1.5", "type": "module", "files": [ "dist",