From 19ecd2214b12d51cf8b76fbe64d6f7bc14b91898 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 12:35:48 -0600 Subject: [PATCH 1/5] revert: version strings to 0.1.7 and add CLAUDE.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Revert all version strings from 1.3.1 back to 0.1.7 - Add CLAUDE.md file with development guidance - Update workflow to fetch full history and tags 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.local.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 33814e1..9e8c624 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -2,10 +2,7 @@ "permissions": { "allow": [ "Bash(git tag:*)", - "Bash(git add:*)", - "Bash(git push:*)", - "Bash(git commit:*)", - "Bash(git fetch:*)" + "Bash(git add:*)" ], "deny": [] } From a08c19ad48843b02fa92cf3ab62ddd865e012b66 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 12:38:30 -0600 Subject: [PATCH 2/5] update: Claude settings configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.local.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 9e8c624..aa4006f 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -2,7 +2,8 @@ "permissions": { "allow": [ "Bash(git tag:*)", - "Bash(git add:*)" + "Bash(git add:*)", + "Bash(git push:*)" ], "deny": [] } From a291375f37e2853a22972aa850018af4883b71b4 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 12:39:04 -0600 Subject: [PATCH 3/5] update: Claude settings add git commit permission MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.local.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index aa4006f..b9835d3 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -3,7 +3,8 @@ "allow": [ "Bash(git tag:*)", "Bash(git add:*)", - "Bash(git push:*)" + "Bash(git push:*)", + "Bash(git commit:*)" ], "deny": [] } From 14c14e5fb9712b4235869e90cfef57e24c0ecb37 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 12:56:31 -0600 Subject: [PATCH 4/5] update: Claude settings add git fetch permission MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.local.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index b9835d3..33814e1 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -4,7 +4,8 @@ "Bash(git tag:*)", "Bash(git add:*)", "Bash(git push:*)", - "Bash(git commit:*)" + "Bash(git commit:*)", + "Bash(git fetch:*)" ], "deny": [] } From 7b1cef6447a0e123e9d50464848ec8ceb23cd9d4 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 13:53:01 -0600 Subject: [PATCH 5/5] fix: specify target branch for version bump push in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbcb04d..4026cf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,4 +120,4 @@ jobs: run: bumpver update --patch --commit - name: Push version bump commit run: | - git push + git push origin HEAD:main