From cd203d2b1bba6839eacd0931911f00c6f41f37c6 Mon Sep 17 00:00:00 2001 From: Sebastien Taggart Date: Wed, 8 Apr 2026 11:26:30 -0400 Subject: [PATCH 1/2] Force explicit signing in Makefile version bump targets --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d1e56e2..f2f11d9 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,8 @@ bump-patch: new="$$major.$$minor.$$((patch + 1))"; \ echo $$new > VERSION; \ git add VERSION; \ - git commit -m "Bump version to $$new"; \ - git tag v$$new + git commit -S -m "Bump version to $$new"; \ + git tag -s v$$new -m "v$$new" # Bump the minor segment (X.Y.Z → X.Y+1.0), commit, and tag. bump-minor: @@ -65,8 +65,8 @@ bump-minor: new="$$major.$$((minor + 1)).0"; \ echo $$new > VERSION; \ git add VERSION; \ - git commit -m "Bump version to $$new"; \ - git tag v$$new + git commit -S -m "Bump version to $$new"; \ + git tag -s v$$new -m "v$$new" # Bump the major segment (X.Y.Z → X+1.0.0), commit, and tag. bump-major: @@ -75,8 +75,8 @@ bump-major: new="$$((major + 1)).0.0"; \ echo $$new > VERSION; \ git add VERSION; \ - git commit -m "Bump version to $$new"; \ - git tag v$$new + git commit -S -m "Bump version to $$new"; \ + git tag -s v$$new -m "v$$new" # Set an explicit version. Usage: make set-version V=1.2.3 set-version: @@ -85,8 +85,8 @@ ifndef V endif echo $(V) > VERSION git add VERSION - git commit -m "Bump version to $(V)" - git tag v$(V) + git commit -S -m "Bump version to $(V)" + git tag -s v$(V) -m "v$(V)" # Push the integration branch for preview/testing. deploy-preview: From 3cecfc421cfc988e1e5d496308aa51828bb28281 Mon Sep 17 00:00:00 2001 From: Sebastien Taggart Date: Wed, 8 Apr 2026 11:28:58 -0400 Subject: [PATCH 2/2] Bump version to 0.3.8 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0f82685..6678432 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.7 +0.3.8