From 83b7139643716c756e6bb28d906b54c5fb32a5dc Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Fri, 6 Feb 2026 15:53:01 -0500 Subject: [PATCH] typo --- scripts/bumpminor.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bumpminor.sh b/scripts/bumpminor.sh index f0703bd..5521cf0 100755 --- a/scripts/bumpminor.sh +++ b/scripts/bumpminor.sh @@ -1,5 +1,6 @@ #!/bin/sh +set -e uv version --bump patch VER=$(uv version --short) sed -i "s/__version__ = \"[0-9.]*\"\(.*\)$/__version__ = \"$VER\"\1/" hbd/__init__.py @@ -8,5 +9,5 @@ sed -i "s/__version__ = \"[0-9.]*\"\(.*\)$/__version__ = \"$VER\"\1/" hbd/__ini git commit -m "version $VER" pyproject.toml hbd/__init__.py git push # tag version -git tag -a v$VER -m "Version $VER" +git tag -a v$VER -m "Version $VER" git push --tags