From 0b31db6634e2a2d04e6eb212cce1eeb3dae7d72c Mon Sep 17 00:00:00 2001 From: someodd Date: Wed, 9 Oct 2024 23:37:19 -0700 Subject: [PATCH] little helper strings --- reposcripts/prep-release.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/reposcripts/prep-release.sh b/reposcripts/prep-release.sh index 6211390..e657d12 100755 --- a/reposcripts/prep-release.sh +++ b/reposcripts/prep-release.sh @@ -28,5 +28,10 @@ sed -i -E "s/^version: [0-9]+(\.[0-9]+)*$/version: $VERSION/" package.yaml # Update the `CHANGELOG.md`` ./reposcripts/update-changelog.sh "$VERSION" -# Suggest the the tag command +echo "Please look over the changes, prepare for the release, then make the commit, and finally tag the release." + +# Suggest the commit command +echo "git commit -m \"Prepare for release v$VERSION\"" + +# Suggest the tag command echo "git tag -a v$VERSION -m \"release v$VERSION\"" \ No newline at end of file